$(document).ready(function() {
    $('#content').hide();

    if ($('#home, #fashiontv').length > 0) $('#content').show();

    $('#wrapper').append('<div id="flash"></div>');
    $('#flash').animate({ 'opacity': 0 }, 750, function() {
        $(this).remove();
    });

    if ($('#home, #fashiontv').length > 0) return;

    $('#content').show("slide", { direction: "right" }, 1500, function() {
        $(this).addClass("faded");
    });


    if ($('#accordion').get() != '') {
        if ($('body').attr('id') == 'premium') {
            $('#accordion').accordion({ header: "dt", collapsible: true });
        }
        else {
            $('#accordion').accordion({ header: "dt", collapsible: true, active: false });
        }
        
        
    }

    if ($('#fashion101, #dirtylaundry').get() != '') {
        $('#fashion101 #inner, #dirtylaundry #inner').jScrollPane({ scrollbarWidth: 5 });
    }
});
