
// Hover hints


$(document).ready(function(){

	$("#topbar a").hover(function() {
		$(this).next("div").animate({opacity: "show", marginTop: "-46px", marginLeft: "35px"},200);
	}, function() {
		$(this).next("div").animate({opacity: "hide", marginTop: "0", marginLeft: "35px"}, 200);
	});

});

// Input Select Focus

function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}
