$('document').ready(function() { 
	if ($('ul.gallery').length > 0) {
		
		$('ul.gallery') 
			.before('<div id="galleryNav"></div>') 
			.cycle({ 
			    fx:     'fade', 
			    //speed:  'fast', 
			    timeout: 4000, 
			    pager:  '#galleryNav'
		});
	}
}); 