$(document).ready(function(){	
	//categories animation
	if($("ul.ul_ctgs li a").length > 0) {
		$("ul.ul_ctgs li a").css("height","150px");
		$("ul.ul_ctgs li a").hover(function() {
	      $(this).stop().animate({height:"168px"}, "fast");
	    }, function(){
	      $(this).stop().animate({height:"150px"}, "fast");
	    });
	}		
	//cycle featured
	if($('div.featured').length > 0) {
		$('div.featured').cycle();
	}	
	//fancybox
	if($("a.fancybox").length > 0) {
		$("a.fancybox").fancybox({
			'zoomOpacity'			: true,
			'overlayShow'			: true,
			'zoomSpeedIn'			: 500,
			'zoomSpeedOut'			: 500,				 
			'overlayOpacity'		: .8,
			'hideOnContentClick' 	: false,
			'centerOnScroll' 		: true	
		});
	}	
});

