
$(document).ready(function(){

	$("#menu li:first").addClass('first');	

    get_footer();
    
});

$(window).resize(function(){	

    get_footer();
    
});

function get_footer() {
	var height=65;
	var screen_f = $("#footer").height();  
    if (screen_f>height) {
        $("#footer").css({"margin-top" : -screen_f + "px"});
        $("#padding_bot").css({"padding-bottom" : 82 + (screen_f-height) + "px"});		
    } 
}


