// JavaScript Document
function $(e){ return document.getElementById(e); }
window.onload = function(){
    $("top").onclick = function (){
        MM_nbGroup('down','top','images/top.gif','',1);
    };
    $("top").onmouseover = function (){
        MM_nbGroup('over','top','images/top_over.gif','',1);
    };
    $("top").onmouseout = function (){
        MM_nbGroup('out');
    };
    $("gallery").onclick = function (){
        MM_nbGroup('down','gallery','images/gallery.gif','',1);
    };
    $("gallery").onmouseover = function (){
        MM_nbGroup('over','gallery','images/gallery_over.gif','',1);
    };
    $("gallery").onmouseout = function (){
        MM_nbGroup('out');
    };
    $("forsale").onclick = function (){
        MM_nbGroup('down','forsale','images/forsale.gif','',1);
    };
    $("forsale").onmouseover = function (){
        MM_nbGroup('over','forsale','images/forsale_over.gif','',1);
    };
    $("forsale").onmouseout = function (){
        MM_nbGroup('out');
    };
    $("custom").onclick = function (){
        MM_nbGroup('down','custom','images/custom.gif','',1);
    };
    $("custom").onmouseover = function (){
        MM_nbGroup('over','custom','images/custom_over.gif','',1);
    };
    $("custom").onmouseout = function (){
        MM_nbGroup('out');
    };
    $("oneoff").onclick = function (){
        MM_nbGroup('down','oneoff','images/oneoff.gif','',1);
    };
    $("oneoff").onmouseover = function (){
        MM_nbGroup('over','oneoff','images/oneoff_over.gif','',1);
    };
    $("oneoff").onmouseout = function (){
        MM_nbGroup('out');
    };
    $("aboutus").onclick = function (){
        MM_nbGroup('down','aboutus','images/aboutus.gif','',1);
    };
    $("aboutus").onmouseover = function (){
        MM_nbGroup('over','aboutus','images/aboutus_over.gif','',1);
    };
    $("aboutus").onmouseout = function (){
        MM_nbGroup('out');
    };
    $("blog").onclick = function (){
        MM_nbGroup('down','blog','images/blog.gif','',1);
    };
    $("blog").onmouseover = function (){
        MM_nbGroup('over','blog','images/blog_over.gif','',1);
    };
    $("blog").onmouseout = function (){
        MM_nbGroup('out');
    };
};

