jQuery(document).ready(function() {
    
    if (typeof(page)==='function')
    {
        page();
    }
    
   
    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%'});
        }
        
    }
    try{
    	    $.getJSON("http://twitter.com/statuses/user_timeline/adamantuscom.json?callback=1", function(data) {
    	    	$("#twitter").html(data[0].text);
    	    });	
    }
    catch(err)
    {
    	
    }


    
    
});

