
{

// this is main navigation 
button1 = new Image;
button1.src = "http://www.vertabase.com/blog/wp-content/themes/default/images/nav/pricing.gif";

button2 = new Image;
button2.src = "http://www.vertabase.com/blog/wp-content/themes/default/images/nav/news.gif";

button3 = new Image;
button3.src = "http://www.vertabase.com/blog/wp-content/themes/default/images/nav/tour.gif";
// end of main navigation

// this is main navigation rollover
button1on = new Image;
button1on.src = "http://www.vertabase.com/blog/wp-content/themes/default/images/nav/pricing_roll.gif";

button2on = new Image;
button2on.src = "http://www.vertabase.com/blog/wp-content/themes/default/images/nav/news_roll.gif";

button3on = new Image;
button3on.src = "http://www.vertabase.com/blog/wp-content/themes/default/images/nav/tour_roll.gif";
// end of main navigation rollover


}
function imageChange2(imageID3,imageName3,imageID4,imageName4) { 

{
document.images[imageID3].src = eval(imageName3 + ".src");
}

}


// popup new window

function openit(sURL,scrolls,w,h,name){
var sNewURL;
sNewURL = sURL + "?id=" + Math.random();
newwindow=open(sNewURL,name,"scrollbars=" + scrolls +",toolbar=no,directories=no,menubar=no,resizable=no,status=yes,width=" + w + ",height=" + h);
newwindow.focus();
}


