/* Colors Hover Effects*/
	
	/* Latest Products */
$(document).ready(function(){
	$("#latest li").hover(function() {		
	$("#latest li").not(this).stop().fadeTo('normal',0.4);//edited line
	},function() {
	$("#latest li").stop().fadeTo('normal',1);
	});
});

	/* Featured Products */
$(document).ready(function(){
	$("#featured li").hover(function() {		
	$("#featured li").not(this).stop().fadeTo('normal',0.4);//edited line
	},function() {
	$("#featured li").stop().fadeTo('normal',1);
	});
});

	/* Specials Products */
$(document).ready(function(){
	$("#special li").hover(function() {		
	$("#special li").not(this).stop().fadeTo('normal',0.4);//edited line
	},function() {
	$("#special li").stop().fadeTo('normal',1);
	});
});


	/* Bestseller Products */
$(document).ready(function(){
	$("#bestseller li").hover(function() {		
	$("#bestseller li").not(this).stop().fadeTo('normal',0.4);//edited line
	},function() {
	$("#bestseller li").stop().fadeTo('normal',1);
	});
});

	/* Products */
$(document).ready(function(){
	$("#products li").hover(function() {		
	$("#products li").not(this).stop().fadeTo('normal',0.5);//edited line
	},function() {
	$("#products li").stop().fadeTo('normal',1);
	});
});


	/* Products */
$(document).ready(function(){
	$(".cart-info tbody tr").hover(function() {		
	$(".cart-info tbody tr").not(this).stop().fadeTo('normal',0.3);//edited line
	},function() {
	$(".cart-info tbody tr").stop().fadeTo('normal',1);
	});
});


	/* Carousel items */
$(document).ready(function(){
	$(".carousel li").hover(function() {		
	$(".carousel li").not(this).stop().fadeTo('normal',0.3);//edited line
	},function() {
	$(".carousel li").stop().fadeTo('normal',1);
	});
});


$(function() {
	$(".jhover").css("opacity","0.5");
		$(".jhover").hover(function () {
			$(this).stop().animate({
			opacity: 1.0
			}, "slow");
		},
		function () {
		$(this).stop().animate({
		opacity: 0.5
		}, "slow");
	});
});
