 //Setup slideshow with fade fx. Using JQuery Cycle Plugin.
 //Override this file if you want to change the settings
$(document).ready(function() { 
	$('#slide').after('<div id="slide-nav" class="floatright">') 
	$('#slide').cycle({ 
	fx: 'fade',
	pager: '#slide-nav',
	pause: 1
	}); 
});
