//Document Ready Function
jQuery(document).ready(function($) {
    $('#homeRotator').cycle({
        timeout: 7000,
		fx: 'fade' ,
		pager:  '#slideshowArrows',
		pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#nav li:eq(' + (idx) + ') a';
        }

	});
	$('.goto1').click(function() { 
		$('#homeRotator').cycle(0); 
        $('#homeRotator').cycle('pause');
		return false; 
	}); 
	$('.goto2').click(function() {  
		$('#homeRotator').cycle(1);  
        $('#homeRotator').cycle('pause');
		return false;  
	}); 
	$('.goto3').click(function() {  
		$('#homeRotator').cycle(2);  
        $('#homeRotator').cycle('pause');
		return false;  
	}); 
	$('.goto4').click(function() { 
		$('#homeRotator').cycle(3); 
        $('#homeRotator').cycle('pause');
		return false; 
	}); 
	$('.goto5').click(function() {  
		$('#homeRotator').cycle(4);  
        $('#homeRotator').cycle('pause');
		return false;  
	}); 
	$('.goto6').click(function() {  
		$('#homeRotator').cycle(5);  
        $('#homeRotator').cycle('pause');
		return false;  
	}); 
});
//End Document Ready FUnction

