var bn=navigator.appName;

var vn=navigator.appVersion;

var b1=null;

var b2=null;

var b3=null;

var b4=null;

var b5=null;

var b6=null;

var b7=null;

var b8=null;

// Animated menu stuff

function norm_img(loc, img) {};

function roll_img(loc, img) {};

norm = new Array(10);	// Allocate space for the normal view of the button

roll = new Array(10);	// Allocate space for the rollover view of the button



if (((bn!="Microsoft Internet Explorer") || (vn.substring(0,3)!="2.0")) && document.images) {

	norm[1]=new Image( 32, 32); norm[1].src="images/nav/house-icon-bw.gif"

	norm[2]=new Image( 32, 32); norm[2].src="images/nav/calendar-icon-bw.gif"

	norm[3]=new Image( 32, 32); norm[3].src="images/nav/interior-icon-bw.gif"

	norm[4]=new Image( 32, 32); norm[4].src="images/nav/sensa-icon-bw.gif"

	norm[5]=new Image( 47, 23); norm[5].src="images/nav/directions-icon-bw.gif"

	norm[6]=new Image( 32, 32); norm[6].src="images/nav/local-icon-bw.gif"

	norm[7]=new Image( 32, 32); norm[7].src="images/nav/view-icon-bw.gif"

    norm[8]=new Image( 32, 32); norm[8].src="images/nav/testimonials-icon-bw.gif"



	roll[1]=new Image( 32, 32); roll[1].src="images/nav/house-icon-color.gif"

	roll[2]=new Image( 32, 32); roll[2].src="images/nav/calendar-icon-color.gif"

	roll[3]=new Image( 32, 32); roll[3].src="images/nav/interior-icon-color.gif"

	roll[4]=new Image( 32, 32); roll[4].src="images/nav/sensa-icon-color.gif"

	roll[5]=new Image( 47, 23); roll[5].src="images/nav/directions-icon-color.gif"

	roll[6]=new Image( 32, 32); roll[6].src="images/nav/local-icon-color.gif"

	roll[7]=new Image( 32, 32); roll[7].src="images/nav/view-icon-color.gif"

    roll[8]=new Image( 32, 32); roll[8].src="images/nav/testimonials-icon-color.gif"

}



function roll_img(loc, img)

{

	if (((bn!="Microsoft Internet Explorer") || (vn.substring(0,3)!="2.0")) && document.images && (img < 10))

		loc.src=roll[img].src;

}

function norm_img(loc, img)

{

	if (((bn!="Microsoft Internet Explorer") || (vn.substring(0,3)!="2.0")) && document.images && (img < 10))

    	loc.src=norm[img].src;

}

