// Initialize image variables
compatable = false;
if( parseInt( navigator.appVersion ) >= 3 ) { compatable = true; }
if( compatable ) {
	the_lawyers = new Image;
	the_lawyers.src = "../../img/nav/the_lawyers.gif";
	the_lawyers_hover = new Image;
	the_lawyers_hover.src = "../../img/nav/the_lawyers_hover.gif";
	the_library = new Image;
	the_library.src = "../../img/nav/the_library.gif";
	the_library_hover = new Image;
	the_library_hover.src = "../../img/nav/the_library_hover.gif";
	our_focus = new Image;
	our_focus.src = "../../img/nav/our_focus.gif";
	our_focus_hover = new Image;
	our_focus_hover.src = "../../img/nav/our_focus_hover.gif";
	the_news = new Image;
	the_news.src = "../../img/nav/the_news.gif";
	the_news_hover = new Image;
	the_news_hover.src = "../../img/nav/the_news_hover.gif";
	join_us = new Image;
	join_us.src = "../../img/nav/join_us.gif";
	join_us_hover = new Image;
	join_us_hover.src = "../../img/nav/join_us_hover.gif";
	contact_us = new Image;
	contact_us.src = "../../img/nav/contact_us.gif";
	contact_us_hover = new Image;
	contact_us_hover.src = "../../img/nav/contact_us_hover.gif";
	about_us = new Image;
	about_us.src = "../../img/nav/about_us.gif";
	about_us_hover = new Image;
	about_us_hover.src = "../../img/nav/about_us_hover.gif";
	nav_home = new Image;
	nav_home.src = "../../img/nav/nav_home.gif";
	nav_home_hover = new Image;
	nav_home_hover.src = "../../img/nav/nav_home_hover.gif";
}


// Rollover functions
function glow(x, y)
{
if( compatable ) { document.images[x].src=eval(y+'.src'); }
}

