// JavaScript Document

function showContent(){

	jQuery(this).addClass("selected");
	//jQuery(this).animate({ backgroundColor: "magenta" }, 1000);
	
	if(jQuery("#ssi_nav .nav-content:visible").length)
	{
		
		jQuery("#ssi_nav .nav-content").hide();
		jQuery(this).children(".nav-content").show();
				//.animate({ backgroundColor: "silver" }, 1000);
	}
	else
	{
		jQuery(this).children(".nav-content").slideDown();
		//jQuery(this).children(".nav-content").show();
	}
	
	if (jQuery.browser.msie) {
		if(parseInt(jQuery.browser.version) == 6) {
			jQuery("#container select").hide();
		}
	}
}

function hideContent()
{
	jQuery(this).removeClass("selected");
	// if (jQuery(this).children("#nav_contact").length == 0) { // don't do this for contact tab
		
		//jQuery(this).animate({ backgroundColor: "silver" }, 1000);
		
		if (jQuery("#ssi_nav .selected").length == 0) {
			//jQuery(".nav-content").slideUp();
			jQuery(".nav-content").hide();
			if (jQuery.browser.msie) {
				if(parseInt(jQuery.browser.version) == 6) {
					jQuery("#container select").show();
				}
			}
		}
	// }
		
}

function closeMenu()
{
	jQuery("#ssi_nav .selected").removeClass("selected"); //.animate({ backgroundColor: "silver" }, 1000).
	jQuery(".nav-content").slideUp();
}
