
$(document).ready(function(){	

	$("#main_left div.news_one:first, #main_right div.news_one:first").addClass('news_first');
	
    get_footer();
    
});

$(window).resize(function(){	

    get_footer();
    
});

function get_footer() {
	var height=64;
	var screen_f = $("#footer").height();  
    if (screen_f>height) {
        $("#footer").css({"margin-top" : -screen_f + "px"});
        $("#padding_bot").css({"padding-bottom" : 100 + (screen_f-height) + "px"});		
    } 
}



