
function init() {
    seo_fix();
}

function seo_fix() {
    sitetitle = document.getElementById("header_title");
    sitetitle.innerHTML = "<img id='header_title_img' src='/images/header_title.png' alt='Antique Boats and Classic Boats' />";
    var menudivs = new Array("buyboat","sellboat","serviceboat","newssignup");
    //var menudivs = new Array("buyboat","sellboat","serviceboat","newssignup");
    //for (i in menudivs) {
    //    md = document.getElementById(menudivs[i]);
    //    if (md) {
    //        mdimg = "<img src='/images/mainmenu_0" + (parseInt(i)+1) + ".jpg'>";
    //        md.innerHTML = mdimg;
    //   }
    //}
}

function changeBoatImage(imgURL, imgURL2) {
    img = document.getElementById("boatimage");
    img.src = imgURL;
}

function showBoatImage(imgURL,h,w) {
    height = parseInt(h) + 20;
    width = parseInt(w) + 20;
    window.open(imgURL, "", "height=" + height + ",width=" + width + ",status=yes,toolbar=no,menubar=no,location=no");
}

function closeFullBoat() {
    fb = document.getElementById("fullBoatImageDiv");
    fb.style.visibility = 'hidden';
}