$(document).ready( function()
{ 
    $("#SettingReducedView").click( function()
    {
        if ($(this).attr('checked')==undefined)
        {
            status = 0;
        }
        else
        {
            status = 1;
        }
        window.location = $.url("/planets/reduced_view/"+status);
    });

    /*$(".nav li").hover( function(e)
    {
        alert(this);
        $(this).slideToggle("slow");
    });*/
});