// Controls the placement of the drop down menu under Portfolio.  The numbers correspond to Top, Left, Width, & height.
  	var myMenu1 = new ypSlideOutMenu("menu1", "down", 45, 200, 110, 130);
	ypSlideOutMenu.writeCSS();
	
// Toggles the views on the bio Page


function toggleView(showing)
{
	if (showing == "hideBio")
	{
		document.getElementById('comingSoon').className='showing';
		document.getElementById('bioDefault').className='hidden';
	}
	
	else
	{
		document.getElementById('comingSoon').className='hidden';
		document.getElementById('bioDefault').className='showing';
	}
}
	