function onLoad() {
	reSize();
	$(".table-row").hover(function() {
		$(this).find(".form-tooltip").stop()
		.animate({left: "448", opacity: 1}, "fast", function(){$(this).get(0).style.removeAttribute('filter')})
		.css("display","block")
	}, function() { 
		$(this).find(".form-tooltip").stop()
		.animate({left: "435", opacity: 0}, "fast", function(){$(this).get(0).style.removeAttribute('filter')})
		.css("display","none")
	});
	
	$(".form-tooltip").animate({left: "435", opacity: 0}, "fast", function(){$(this).get(0).style.removeAttribute('filter')})
}

function reSize() {
	if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
		document.getElementById('wrapperbg').style.height = (document.documentElement.clientHeight) + 'px'; 
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
		document.getElementById('wrapperbg').style.height = (document.body.clientHeight) + 'px'; 
  }
}


