$(document).ready(function(){

	$("body.product ul#photos li a").fancybox({
		'overlayShow': true,
		'overlayOpacity' : 0.5
	});

	$("body.company ul#photos li a").fancybox({
		'overlayShow': true,
		'overlayOpacity' : 0.5
	});

	$("body.product div.family-list div.item a").fancybox({
		'overlayShow': true,
		'overlayOpacity' : 0.5
	});

	$("body.events div.item ul.pic a").fancybox({
		'overlayShow': true,
		'overlayOpacity' : 0.5
	});

	$("body.products .prod-list li a").hover(
		function(){
			$(this).animate({borderColor:'#A67C52'},"fast");
			//$(this).find("strong").animate({color:'#fff',backgroundColor:'#A67C52'},"fast");
		},
		function(){
			$(this).animate({borderColor:'#ffffff'},"fast");
			//$(this).find("strong").animate({color:'#42210B',backgroundColor:'#fff'},"fast");
		}
		
	);

});