//     jQuery.noConflict();

jQuery(document).ready(function($){

// Do jQuery stuff using $ this where the functions need to go   

$(document).ready(function(){

	$('.slideshow')
		.before('<div id="scroller_nav">') 
		.cycle({
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			timeout:  7000,
			pager:  '#scroller_nav',
			next:   '#scroller_next', 
		    prev:   '#scroller_prev' 
		});
	}); 

	$('#scroller_pause').click(function() { 
		$('.slideshow').cycle('pause'); 
	});
	
	$('.resume').click(function() { 
		$('.slideshow').cycle('resume'); 
	});
	
	
	
	
	$("#accordion").accordion({ 
		active: false
	});

});
	 

