// JavaScript Document

if (Drupal.jsEnabled) {
	$(document).ready(function() {
		
		//the auto rotation for featured photos
		var $container = $('#tjslfeaturehighligh-largeimage').cycle({
			fx:    'scrollRight', 
		    speed:  1000,
		    timeout: 12000,
		    //pause: 1,     // true to enable "pause on hover" 		
		    //pauseOnPagerHover: 1,   // true to pause when hovering over pager link		    
		    pager: '#featurednav',
		    //pagerEvent: onAfter1,
		    sync: 1,
		    pagerAnchorBuilder: function(idx, slide) { 
		        // return selector string for existing anchor 
		        return '#featurednav li:eq(' + idx + ') a'; 
		    } 		    
		});	
		
		$container;

	}); 
}


