// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults



// called at startup
$(document).ready(function() {
    $(".notice").fadeIn("slow").animate({opacity: 1.0}, 3000).slideUp(2500);
    $(".themeswitcher #default").click(function() {
        swapStyles('');
    });
    $(".themeswitcher #highcontrast").click(function() {
        swapStyles('highcontrast_');
    });
    $(".themeswitcher #textonly").click(function() {
        swapStyles('justtext_');
    });
    if( $("ul.projecttabs").length ) {
        $("ul.projecttabs").tabs("div.panes > div");
    }
});
function swapStyles( cssname ) {
    $.cookie('access', cssname);
    location.reload();
}