<!--
function switch_toOLD(id) {
    $(".switcher_layer").stop();         
    $(".switcher_layer").css("z-index","0");
    $("#" + id).css("z-index","10"); 
    $(".switcher_layer").css("opacity","100");  
    $("#" + id).hide();  
    $("#" + id).fadeIn(1000, function () {    
        $(".switcher_layer:not(#" + id + ")").hide();    
    });          
}
 
function switch_to(id) {         
    $(".switcher_layer").hide();  
    $("#" + id).show();          
}
 
function button_to(id) {
    $(".switcher_button").removeClass("on");
    $(id).addClass("on");
}
 
$(document).ready( function() {
    
    $("#switcher_button_1").click(function () {
        button_to(this);
        switch_to("layer1");
        return false;    
    });
    
    $("#switcher_button_2").click(function () {
        button_to(this);
        switch_to("layer2");
        return false;    
    });
    
    $("#switcher_button_3").click(function () {
        button_to(this);
        switch_to("layer3");
        return false;    
    });
    
    $("#switcher_button_4").click(function () {
        button_to(this);
        switch_to("layer4");
        return false;    
    });
    
});
//-->