// JavaScript Document

function display_division(div_id)
{
    //hide all divisions
    main_div.style.display="none";
		news_div.style.display="none";
    alumni_div.style.display="none";
		donations_div.style.display="none";
		actives_div.style.display="none";
		board_div.style.display="none";
		photos_div.style.display="none";
		rush_div.style.display="none";
		links_div.style.display="none";
		
		
    div_id.style.display="block";	//show div_id
    //move to top, so the logo is on the screen
}