$(function() {
	$(".product-slider").each(function() {
		//hide all items except for 1st one
		$(this).children(".cont").children("li").hide();
		$(this).children(".cont").children("li:eq(0)").show();
		//$(this).children(".cont").children("li:eq(0").data("shown", true);
	});
	
	//add click actions to product sliders
	$(".product-slider .links a").click(function() {
		//get number
		var num = $(this).attr("class");
		num = num.split("-");
		num = num[1];
		
		//fadeout
		$(this).parent().parent().children(".cont").children("li").fadeOut(500);
		
		//fadein
		$(this).parent().parent().children(".cont").children("li:eq(" + (num - 1) + ")").fadeIn(200);

		return false;
	});
});
