jQuery(document).ready(function() {
	jQuery("#company-search #ckJardin, #company-search #ckMarine, #company-search #ckIndustrie").bind('click',function(){
		jQuery("form#company-search").trigger('submit');
	});
	setTimeout(function() {
		GEvent.addListener(map, 'mousemove', function(latlng) { 
			for ( var i = 0; i < companies.length ; i++ ) {
				var company = companies[i];
				var img = jQuery('#mtgt_unnamed_'+i);
				img.attr('title',company.name+', '+company.zipCode+' '+company.city);
				img.attr('alt',company.name+', '+company.zipCode+' '+company.city);
			}
		});
	}, 2000);
});
