$(document).ready(function(){
	$('#slideshow').cycle('fade');
	$('img.product').each(function() {
		$(this).mouseover(function() {
			$(this).css('cursor', 'pointer');
		});
		$(this).click(function() {
			window.location = '/products/view/' + $(this).attr('id');
		});
	});
});
