 $(document).ready(function(){
//-------------------------------Placeholder----------------------------------
        jQuery('input[placeholder], textarea[placeholder]').placeholder();
            var lc=$(".cm_content").height();
            var rc=$(".cm_side").height();
            var cc=$(".cm_side .m_buts").height();
            if (lc<rc) {$(".cm_content").height(rc-4);}
            else {$(".cm_side .box").height(lc-cc);}
//----------------------------Horizontal Menu----------------------------------
       if($.browser.msie){
        $('.h_menu').find('li').hover(function(){
            $(this).find('ul').stop(true, true);
            $(this).find('ul').show('fast');
        }, function(){
            $(this).find('ul').hide('normal');
        })
       }
       else
           {
        $('.h_menu').find('li').hover(function(){
            $(this).find('ul').stop(true, true);
            $(this).find('ul').slideDown();
        }, function(){
            $(this).find('ul').slideUp('slow');
        })
           }
//----------------------------Left Menu----------------------------------------
        $('.side_menu').find('li:not(.sm_now)').hover(function(){
            $(this).find('ul').stop(true, true);
            $(this).find('ul').slideDown();
        }, function(){
            $(this).find('ul').slideUp('slow');
        })
//---------------------------PageUp---------------------------------------------
     $(window).scroll(function(){

         var contentHeight = $('.content_in').height();
         var windowHeight = $(window).height();
         contentHeight = parseInt(contentHeight);
         windowHeight = parseInt(windowHeight);
         
         if(windowHeight>contentHeight)
            $('.p_t').hide();
                else
            $('.p_t').show();
         
        })

})

