jQuery(document).ready(function($) {
  
	//hide submenu
	$('.submenu').hide();
	  
	//footer rotation
	$('.rotation').cycle({
		fx:'fade',
		speed:2500,
		timeout:7000
	});
  
	//menu
	function mouseOver(elem) {
			$('.submenu', this).slideDown();
	}
	function mouseOut(elem) {
		$('.submenu', this).slideUp();	
	}
	
	$('.nav > ul > li').hoverIntent(mouseOver, mouseOut);
	
	//officetour
	$('.officeTour').cycle({ 
		fx:     'fade', 
		speed:   500, 
		timeout: 5000, 
		next:   '.next',
		prev: '.prev',
		pause:   1 
	});
	
	//beforeafter
	$('.bapix').cycle({ 
		fx:     'fade', 
		speed:   500, 
		timeout: 5000, 
		next:   '.next',
		prev: '.prev',
		pause:   1 
	});
		  
});
