
$(document).ready(function(){	
	
	$("#menu li:first").addClass('nobg');
	$("#menu li.on").next("li").addClass('nobg');;
	$("#front_block table.table tr:first").addClass('nobg');

    get_footer();
    
});

$(window).resize(function(){	

    get_footer();
    
});

function get_footer() {
	var screen_f = $("#footer").height();  
    if (screen_f>80) {
        $("#footer").css({"margin-top" : -screen_f + "px"});
        $("#padding_bot").css({"padding-bottom" : 100 + (screen_f-80) + "px"});		
    } 
}



