var positionLang = function() {

	var offset = $('#content').offset();
	var height = $('#content').height();
	$('#footer').show().css('left', offset.left+1).css('top', offset.top+height+14);
};

$(window).load(function() {
	var height = $('#content').height();
	//$("#content").append(height+'');
	var target = 500;
	if (typeof(min_height)!='undefined') {
		target = min_height;
	}
 	if (height<target) {
	 	height = target;
		$('#content').height(height);
	}
	$('#suHostedBadge').css('z-index', 0).css('display', 'inline-block');	
});

$(window).load(positionLang);

$(window).bind('resize', positionLang);
