jQuery.noConflict();

jQuery(function() {
	jQuery('#pricing').mouseenter(
		function() { jQuery('#sublaser').fadeOut(50);
					 jQuery('#subabout').fadeOut(50);
					 jQuery('#substay').fadeOut(50);
					 jQuery('#subprice').fadeIn(200); }
	);
	jQuery('#lasertag').mouseenter(
		function() { jQuery('#subabout').fadeOut(50);
					 jQuery('#substay').fadeOut(50);
					 jQuery('#subprice').fadeOut(50);
					 jQuery('#sublaser').fadeIn(200); }
	);
	jQuery('#aboutus').mouseenter(
		function() { jQuery('#subprice').fadeOut(50);
					 jQuery('#sublaser').fadeOut(50);
					 jQuery('#substay').fadeOut(50);
					 jQuery('#subabout').fadeIn(200); }
	);
	jQuery('#wheretostay').mouseenter(
		function() { jQuery('#subprice').fadeOut(50);
					 jQuery('#sublaser').fadeOut(50);
					 jQuery('#subabout').fadeOut(50);
					 jQuery('#substay').fadeIn(200); }
	);
	jQuery('#gallery').mouseenter(
		function() { jQuery('#subprice').fadeOut(50);
					 jQuery('#sublaser').fadeOut(50);
					 jQuery('#substay').fadeOut(50);
					 jQuery('#subabout').fadeOut(50); }
	);
	jQuery('#functions').mouseenter(
		function() { jQuery('#subprice').fadeOut(50);
					 jQuery('#sublaser').fadeOut(50);
					 jQuery('#substay').fadeOut(50);
					 jQuery('#subabout').fadeOut(50); }
	);
	jQuery('#splatattacklogo').mouseenter(
		function() { jQuery('#subprice').fadeOut(50);
					 jQuery('#sublaser').fadeOut(50);
					 jQuery('#substay').fadeOut(50);
					 jQuery('#subabout').fadeOut(50); }
	);
	jQuery('#faqs').mouseenter(
		function() { jQuery('#subprice').fadeOut(50);
					 jQuery('#sublaser').fadeOut(50);
					 jQuery('#substay').fadeOut(50);
					 jQuery('#subabout').fadeOut(50); }
	);
	jQuery('#downloads').mouseenter(
		function() { jQuery('#subprice').fadeOut(50);
					 jQuery('#sublaser').fadeOut(50);
					 jQuery('#substay').fadeOut(50);
					 jQuery('#subabout').fadeOut(50); }
	);
	jQuery('#employment').mouseenter(
		function() { jQuery('#subprice').fadeOut(50);
					 jQuery('#sublaser').fadeOut(50);
					 jQuery('#substay').fadeOut(50);
					 jQuery('#subabout').fadeOut(50); }
	);

	jQuery('#subprice').mouseleave( function() { jQuery(this).fadeOut(50); } );
	jQuery('#sublaser').mouseleave( function() { jQuery(this).fadeOut(50); } );
	jQuery('#substay').mouseleave( function() { jQuery(this).fadeOut(50); } );
	jQuery('#subabout').mouseleave( function() { jQuery(this).fadeOut(50); } );
	
	//stick the footer at the bottom of the page if we're on an iPad/iPhone due to viewport/page bugs in mobile webkit 
	if(navigator.platform == 'iPad' || navigator.platform == 'iPhone' || navigator.platform == 'iPod') 
	{ 
	     jQuery("#footer").css("position", "static"); 
	};
});

