function positionFooter(){
	$("#footer").css('margin-top','0');
	if($(document.body).height() < $(window).height()){
		var delta=$(window).height()-$(document.body).height()+12;
		$("#footer").css('margin-top',delta+'px');
	}
}


$(window).load(function(){
	//positionFooter();

});

$(window).bind('resize',function(){
	//positionFooter();
});

$(document).ready(function(){
	
});