

function effects() {
	
	
	jQuery('.product-image').animate({
	opacity: 1,
  }, {
    duration: 1000,
    specialEasing: {
      marginTop: 'easeOutQuad'
    },
  });

};

	
 jQuery(document).ready(function() {
  jQuery('.product-image').css({ opacity: 0 });
  setTimeout("effects()",500);
  
  jQuery('body').prepend('<div class="nav-shadow"></div>');
  
  jQuery('.nav-shadow').css({ 'display': 'none', 'z-index': 10 , 'opacity':0.4});
  jQuery('.nav-container').css({ 'z-index': 15 });
  
  jQuery('.nav-container li').mouseover(function() {
 	jQuery('.nav-shadow').css({ 'display': 'block' });

  });
  
  jQuery('.nav-container li').mouseout(function() {
	jQuery('.nav-shadow').stop();
	jQuery('.nav-shadow').css({ 'display': 'none'});
  });

 });

;
