	jQuery(document).ready(function() {
	jQuery("#dropmenu ul").css({display: "none"}); // Opera Fix
	
	jQuery("#dropmenu li").hover(
		function(){ if ( jQuery(this).find('ul:first').css('display') == 'none' ) { jQuery(this).find('ul:first').slideDown(268); } },
		function(){ if ( jQuery(this).find('ul:first').css('display') == 'block' ) { jQuery(this).find('ul:first').slideUp(268); } }
	);
	});

	/*$(document).ready(function() {
		$('#s4')
		.cycle({ 
			fx:     'fade', 
			speed:  'fast', 
			timeout: 0, 
			prev:   '#prev2', 
			next:   '#next2'
		});
		
		$('#s2')
		.cycle({ 
			fx:     'fade', 
			speed:  '1000', 
			timeout: 5000, 
			pause:   1 ,
			next:   '#next',
			prev:   '#prev' 
		});
		
		$('#s2')
		.cycle({ 
			fx:     'fade', 
			speed:  '1000', 
			timeout: 5000, 
			pause:   1 ,
			next:   '#nextinner',
			prev:   '#previnner' 
		});
	});*/
	
		$(document).ready(function() {
		/*$('#s4')
		.cycle({ 
			fx:     'fade', 
			speed:   3000, 
			//speedIn: 5000,
			//timeoutFn:6000,
			delay:5000,
			//sync:0,
			timeout: 2200, 
			prev:   '#prev2', 
			next:   '#next2'
		});*/
		$('#bannerSlide')
		.cycle({ 
			fx:     'fade', 
			speed:  'fast', 
			timeout: 3000, 
			prev:   '#prev2', 
			next:   '#next2'
		});
		
		$('#testimonials').cycle({ 
			fx:     'fade', 
			speed:   'fast', 
			timeout: 3000, 
			//pause:   1,
			next:   '#next',
			prev:   '#prev' 
		});
		
		$('#pauseButton').click(function() { 
			$('#testimonials').cycle('pause');
			$(this).hide();
			$('#resumeButton').show();
		});
		$('#resumeButton').click(function() { 
			$('#testimonials').cycle('resume'); 
			$(this).hide();
			$('#pauseButton').show();
		});
		
	});
	
	$(function() {
		$("#accordion").accordion({
			autoHeight: false
		});
	});
	
	/*if ( $('#accordion').length ) { 
		$(function() {
			$("#accordion").accordion({
				autoHeight: false
			});
		});
	}*/

