$(function() {
	<!-- home page feature area -->
    $('#featureSliders').cycle({ 
    fx:     'scrollLeft',
    timeout: 0, 
    next:   '#featureSliders', 
	next:   '#next2', 
    prev:   '#prev2',
	random: 0
	});
	
	<!-- home page product slides -->
    $('#homeProductSliders').cycle({ 
    fx:     'scrollLeft',
    timeout: 6500, 
    next:   '#homeProductSliders', 
	next:   '#nextProduct', 
    prev:   '#prevProduct',
	random: 1
	});
	
	<!-- products page slide shows -->
	$('#productSlides') 
   .after('<div class="nav">') 
   .cycle({ 
    fx:     'uncover', 
    timeout: 0, 
    pager:  '.nav' 
    });
   
   $('#productSlides2') 
   .after('<div class="nav2">') 
   .cycle({ 
    fx:     'uncover', 
    timeout: 0, 
    pager:  '.nav2' 
    });
});
