//	Image Fades

$(document).ready(function(){
	$("#product-view .product img").css({opacity: 0});
	$("#product-view .product img").fadeTo(1000, 1);

	$("#product-view .product").hover(function(){
		$(this).find('img').fadeTo(400, 0.7);
	},function(){
		$(this).find('img').fadeTo(400, 1);
	});
	
	$("#recent-posts li img").css({opacity: 0});
	$("#recent-posts li img").fadeTo(1000, 1);

	$("#recent-posts li").hover(function(){
		$(this).find('img').fadeTo(400, 0.7);
	},function(){
		$(this).find('img').fadeTo(400, 1);
	});	
		
});


//	Fade

$(document).ready(function(){
$('.main-slides').cycle({ 
    fx:    'fade', 
    speed:  300,
    random: 1
 });
});
