jQuery(document).ready(function(){
        //scroll to top
        //#########################################################
        jQuery('#navigator_top').bind('click',function(){
            jQuery("html").animate({
                scrollTop:0
            },{
                duration:1000
            });
        })
        jQuery('#navigator_back').bind('click',function(){
            history.back(-1);
        })
});

/**
 * 
 */
jQuery("#content_sub_right a.active").parent('li').children('ul:first').show();
jQuery("#content_sub_right a.active").parents('ul').show();

/**
 * 
 */
jQuery(window).bind('load',function(){
 jQuery("body").css({"backgroundImage":"url('')"});
 jQuery("#wrapper").css({"visibility":"visible"});
 jQuery("#ban_main").css({"display":"block"});
});


