$(document).ready(function(){

	// featured product slideshow
	$('#featured').cycle({ 
		next: '.next' 
	});
	
	// bestsellers/latest slideshow 
	$('#products').cycle({ 
		fx: 'scrollDown',
		timeout: 0,
		next: '.best',
		prev: '.latest' 
	});
		
});