$(function() {
	//alert($('#new_products').width());
	var w = $('#slideshow').width();
	//alert(w);

	$.fn.cycle.defaults.speed   = 1000;
	$.fn.cycle.defaults.timeout = 6000;

	$('.slide').cycle({
		fx: 'turnDown',
		delay: -4000
	});

	$('.slide img').click(function(){
		location.href = "product_info.php?products_id=" + $(this).attr("pid");
	});
});

