$(document).ready(function() {
    
    $("#power-btn, a.ztv-button").mouseup(function(){
        $(this).removeClass("pressed");
    }).mousedown(function(){
        $(this).addClass("pressed");
    });
    
    $("#power-btn").click(function(){
        $("#ztv-screen").toggle();
        $("#ztv-indicator").toggle();
        return false;
    });
    
    $("a.ztv-button").click(function(){
        $("#ztv-indicator").show();
        $("#ztv-screen img").hide();
        var slide_id = "#" + $(this).attr("id") + "-slide";
        $(slide_id).show();
        setTimeout('$("#ztv-indicator").hide()', 100);
        return false;
    });
    
    $("a.ztv-button-sensor").click(function(){
        $("#ztv-indicator").show();
        $("#ztv-screen img").hide();
        var slide_id = $(this).attr("id").replace("add-", "#") + "-slide";
        $(slide_id).show();
        setTimeout('$("#ztv-indicator").hide()', 100);
        return false;
    });
    
    
    $("a.ztv-button-sensor").mouseover(function(){
        var button_id = $(this).attr("id").replace("add-", "#");
        $(button_id).addClass("ztv-hover");
    }).mouseout(function(){
        var button_id = $(this).attr("id").replace("add-", "#");
        $(button_id).removeClass("ztv-hover");    
    });
    
});
