mouseoverarray["button_overview"] = new Image(); mouseoverarray["button_overview"].src = "/images/products/button_overview.over.gif";
mouseoutarray["button_overview"] = new Image(); mouseoutarray["button_overview"].src = "/images/products/button_overview.off.gif";

mouseoverarray["button_detail"] = new Image(); mouseoverarray["button_detail"].src = "/images/products/button_detail.over.gif";
mouseoutarray["button_detail"] = new Image(); mouseoutarray["button_detail"].src = "/images/products/button_detail.off.gif";

mouseoverarray["button_gallery"] = new Image(); mouseoverarray["button_gallery"].src = "/images/products/button_gallery.over.gif";
mouseoutarray["button_gallery"] = new Image(); mouseoutarray["button_gallery"].src = "/images/products/button_gallery.off.gif";

function content_switcher(showContent) {
    var current_div = document.getElementById(current_content).style;
    var new_div = document.getElementById(showContent).style;
    
    current_div.display = "none";
    new_div.display = "block";
    
    current_content = showContent;
}

function detail_switcher(showImage) {
    var currentLink = document.getElementById(current_detail);
    var newLink = document.getElementById(showImage);
    var imageShell = document.getElementById("image_detail");
    
    currentLink.className = "";
    newLink.className = "current";
    
    imageShell.src = newLink.href;
    
    current_detail = showImage;
}

function gallery_switcher(showImage, caption_string) {
    var currentLink = document.getElementById(current_gallery);
    var newLink = document.getElementById(showImage);
    var imageShell = document.getElementById("image_gallery");
    
    currentLink.className = "";
    newLink.className = "current";
    
    imageShell.src = newLink.href;
    
    current_gallery = showImage;
    
    var caption_contain = document.getElementById("caption");
    caption_contain.innerHTML = caption_string;   
}
