$(document).ready(function() {

	if ($('#slideshow').length > 0 ) {
	 	$('#slide-wrap').cycle({ 
			fx: 		 'fade',
	    	speed:       300, 
	    	timeout:     3000, 
	    	prev:		'#left-btn',
	    	next:       '#right-btn' 
		});
	}
	
	if ($('#home_slideshow').length > 0 ) {
		$('#home_slideshow').cycle({
			fx: 		 'fade',
	    	speed:       300, 
	    	timeout:     3000, 
	    	pager:      '#slideshow_nav', 
	   		pagerEvent: 'mouseover', 
	    	pauseOnPagerHover: true
		});
	
	}

});