 $(document).ready(function() {
	 
	 if ($.browser.msie && ($.browser.version == 8 || $.browser.version == 7 || $.browser.version == 6)) {
	 }
	 else {
	 
	$(".box-product > div").hover(
  function () {
 
   $(this).siblings().stop().animate({
  opacity: 1

}, 500)
  },
  function () {
  
      $(this).siblings().stop().animate({
  opacity: 1

}, 500)
   
  }
);  
  	$(".product-grid > div").hover(
  function () {
 
   $(this).siblings().stop().animate({
  opacity: 1
}, 500)
  },
  function () {
  
      $(this).siblings().stop().animate({
  opacity: 1
}, 500)
   
  }
);
  	
	 }
   
  $(".box-category > ul > li > a").hover(function () {
$(this).stop().animate({ left: "5" }, "fast"); },
function () {
$(this).stop().animate({ left: "0" }, "medium");
}); 
  
//carousel image opacity
  $('.jcarousel-skin-opencart img').css('opacity', '0.6');
  
  $('.jcarousel-skin-opencart img').hover(
		  function () {
			  
			   $(this).stop().animate({
			  opacity: 1
			}, 500)
			  },
			  function () {
			  
			      $(this).stop().animate({
			  opacity: 1
			}, 500)
			   
			  }
			); 
  
  
  
  
 });




