$(document).ready(function(){

	
	/* Image Zoom */
	
	$("a#shaman-art").fancybox({
		
		'zoomSpeedIn': 350, 
		'zoomSpeedOut':	350, 
		'overlayShow': false
	
	});
	
	
	/* Buttons */
	
	$(".shadow").css("opacity", "0.26");
	
	$(".highlight").css("opacity", "0.23");
	
	
	$(".nav").mouseenter(
    	
		function () {
			
			$(this).children("div.shadow").stop().animate( { top: '0px' }, 300, 'easeOutQuad' );
			
			$(this).children("div.highlight").stop().animate( { top: '31px' }, 300, 'easeOutQuad' );
			
			/*$(this).children("a").stop().animate( { marginTop: '-2px' }, 300, 'easeOutQuad' );*/
			
		}
    
	);
	
	$(".nav").mouseleave(
    	
		function () {
			
			$(this).children("div.shadow").stop().animate( { top: '-6px' }, 300, 'easeOutQuad' );
			
			$(this).children("div.highlight").stop().animate( { top: '37px' }, 300, 'easeOutQuad' );
			
			/*$(this).children("a").stop().animate( { marginTop: '0px' }, 300, 'easeOutQuad' );*/
			
		}
    
	);
	
	
	$(".com").mouseenter(
    	
		function () {
			
			$(this).stop().animate( { marginLeft: '6px' }, 300, 'easeOutQuad' );
			
		}
    
	);
	
	$(".com").mouseleave(
    	
		function () {
			
			$(this).stop().animate( { marginLeft: '0px' }, 300, 'easeOutQuad' );
			
		}
    
	);
	
	$(".co").mouseenter(
    	
		function () {
			
			$(this).stop().animate( { marginLeft: '6px' }, 300, 'easeOutQuad' );
			
		}
    
	);
	
	$(".co").mouseleave(
    	
		function () {
			
			$(this).stop().animate( { marginLeft: '0px' }, 300, 'easeOutQuad' );
			
		}
    
	);

	
});


























