// JavaScript

$(document).ready(function(){   
    $('#header').supersleight({shim: '/cms/upload/corporate/blank.gif'}); 

    
    $('#ausblendenLink').toggle(function() {
        $('#showroomContent').hide();
        $(this).attr('title', 'Einblenden');
        $(this).html("Einblenden");
    }, function() {
        $(this).attr('title', 'Ausblenden');
        $(this).html("Ausblenden");
        $('#showroomContent').show();   
    });
    
    $("a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_rounded'});
    
});
