$(document).ready(function(){
	 if ($.browser.msie && ($.browser.version == 8 || $.browser.version == 7 || $.browser.version == 6)) {
	 }
	 else {
		 
	$(".box-product > div").hover(function () {
    $(this).animate({opacity: .7}, 'fast')}, function () {
	$(this).animate({opacity: 1}, 'fast')
	
	});
	
	$(".product-grid > div").hover(function () {
	$(this).animate({opacity: .6}, 'fast')}, function () {
	$(this).animate({opacity: 1}, 'fast')
	});
	
	$(".product-list > div").hover(function () {
	$(this).animate({opacity: .6}, 'fast')}, function () {
	$(this).animate({opacity: 1}, 'fast')
	});
	
	}
	
	$("#menu ul li").hover(function () {
	$(this).stop().children('div').slideDown('fast', function() {
    // Animation complete.
  	});

	;}, 
	function () {
	$(this).stop().children('div').fadeOut('fast', function() {
    // Animation complete.
 	});

  
 });

});
