/* 4/16/2009 - cm
 * this jquery js is used on the Refreshed frommers.com 
 * it initializes the photo set slideshow
 * it can be used on all main pages if parameters are the same.
 * 
 */

	$('#photoSet').cycle({ 
	    fx:    'fade', 
	    speed:   300, 
	    timeout: 5000, 
	    pause:   1
		
		    , pager:  '#pagerNav', 
		     // pagerEvent: 'mouseover',
		     pauseOnPagerHover: true,
	
			 // callback fn that creates a thumbnail to use as pager anchor 
		    pagerAnchorBuilder: function(idx, slide) { 
	        return '<a href="#">&#149;</a>'; 
	        }
		
	});
	
