// JavaScript Document

$(function(){

	if (window.innerWidth<=800 || document.width<=800 || screen.width<=800){ 
		$("link[id=main]").attr({href : "/styles/mobile.css"});
	
	

	//set the iFrame width
	$("iframe").css("width","320px");
	
	}
	
	//collapse / expand the global nav
	$('div.mobile a.global').click(function() {
		
		if($("#interior #globalNav").is(":visible"))
		{
			$('#interior #globalNav').css("display", "none");
			$(this).html("+ Main Menu");
		}
		else
		{
			$('#interior #globalNav').css("display", "block");
			$(this).html("- Main Menu");
		}
	});
	
	//collapse / expand the sub nav
	$('div.mobile a.subNav').click(function() {
		
		if($("#interior #navTest").is(":visible"))
		{
			$('#interior #navTest').css("display", "none");
			$(this).html("+ Menu");
		}
		else
		{
			$('#interior #navTest').css("display", "block");
			$(this).html("- Menu");
		}
	});
	
});


