$(document).ready(function(){
	// jquery cycle plugin - (http://jquery.malsup.com/cycle/)    
	$('#rotator') 
    .cycle({ 
        fx:     'scrollHorz', 
        speed:  '1650', 
        timeout: '4000', 
   	    pause:   '1',
   	    next:   '#next',
   	    prev: '#previous',
   	    random: 1
    });
});

