$(document).ready(function() {
    Shadowbox.init();
    $("#navigation a.selected").find("img:first").hide();
    $("#navigation a.selected").find("img:last").show();
    
    $("#navigation a").hover(
        function(){
            if($(this).hasClass("selected")) {
                $(this).find("img:last").hide();
                $(this).find("img:first").show();  
            } else {
                $(this).find("img:first").hide();
                $(this).find("img:last").show();                
            }
        },
        function(){
            if($(this).hasClass("selected")) {
                $(this).find("img:first").hide();
                $(this).find("img:last").show();   
            } else {
                $(this).find("img:last").hide();
                $(this).find("img:first").show();               
            }            
        }
    );     
    
});
