jQuery.noConflict();

(function($) {
	$('#headerleft').cycle({
		fx: 'fade', //transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 3000, //defines the number of milliseconds it will take to transition from one slide to the next
		timeout: 2000, //specifies how many milliseconds will elapse between the start of each transition
		pause: 1 //causes the slideshow to pause when the mouse hovers over the slide
	});
	$('#headerright').cycle({
		fx: 'fade', //transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 3000, //defines the number of milliseconds it will take to transition from one slide to the next
		timeout: 2000, //specifies how many milliseconds will elapse between the start of each transition
		pause: 1 //causes the slideshow to pause when the mouse hovers over the slide
	});
})(jQuery);
