function BlurLinks()
{
	lnks = document.getElementsByTagName('a');
	for(i = 0; i < lnks.length; i++){
		lnks[i].onfocus = new Function("this.blur()");
	}
}
onload=BlurLinks;

$(document).ready(function() {
	var h = $(window).height();
	if(h == $(document).height())
	{
		// CSS Style -> Footer absolute
		var h1 = $('#footer_outer').outerHeight(true);
		var h2 = $('#page_div').outerHeight(true);
		if(h1+h2 < h)
		{
			var off = h-$('#footer_outer').outerHeight(true)-$('#page_div').outerHeight(true);
			var newset = parseInt($('#footer_outer').css('margin-top').replace(/px/,''))+off-13+'px';
			//alert(newset);
			$('#footer_outer').css('margin-top', newset);
		}
	}
});