$(document).ready(function() {			

// Append shadow image to each LI
					$("#huriata span").append('<img class="shadow" src="http://jarochelo.com/wp-content/themes/cesar/img/huriata-shadow.png" width="32" height="32" alt="" />');
	
			// Animate buttons, shrink and fade shadow
					$("#huriata span").hover(function() {
						var e = this;
					    $(e).find("a").stop().animate({ marginTop: "-15px" }, 250, function() {
					    	$(e).find("a").animate({ marginTop: "-9px" }, 250);
					    });
					    $(e).find("img.shadow").stop().animate({ width: "100%", height: "25px", marginLeft: "0px", opacity: 0.45 }, 250);
					},function(){
						var e = this;
					    $(e).find("a").stop().animate({ marginTop: "4px" }, 250, function() {
					    	$(e).find("a").animate({ marginTop: "0px" }, 250);
					    });
					    $(e).find("img.shadow").stop().animate({ width: "100%", height: "25px", marginLeft: "0", opacity: 1 }, 250);
					});
					
			//Fancybox
			$('a#popUp').fancybox({
					'transitionIn'	:	'elastic',
					'transitionOut'	:	'elastic',
					'speedIn'		:	300, 
					'speedOut'		:	200, 
					'overlayShow'	:	false,
					'hideOnContentClick' : 'true',
					'enableEscapeButton'	:	true
				});						
				
});
