$(document).ready(function() {
	$("a.thickbox, a[rel='lightbox'], .lightboxes").fancybox({
		'hideOnContentClick': false,
		imageScale : true
	}); 
});

$(function(){
   $('.clic, #field_5, #map').hover(function() { //mouse in
   		$(this).stop().animate({ opacity: '0.75' }, 250);
   }, function() { //mouse out
    	$(this).stop().animate({ opacity: '1' }, 250);
   });   
});
