jQuery(document).ready(function() {
    
    if (typeof(page)==='function')
    {
        page();
    }
    
   //$.Juitter.start({
//        searchType:"searchWord",
//        searchObject:'adamantuscom',
//        numMSG:5,
//        live:"live-20", // it will be updated every 180 seconds/3 minutes
//        filter:"sex->*BAD word*,porn->*BAD word*,fuck->*BAD word*,shit->*BAD word*"
//   });
    
    var top_content    = $('#top_content').outerHeight();
    var footer_content = $('#footer_content');
    var window_height  = $(window).height();
    
    if(window_height > top_content){
        if($('#top_content').hasClass('frontpage_top')){
            return false;
        }else{
            footer_content.css({'position':'absolute','bottom':0,'width':'100%'});
        }
        
    }
    
});

