$(document).ready(function()
{
	if ($('div#loginbox').length == 1)
	{
		$('input[name=domain]').focus();

		if (__msg == true && __error == true)
		{
			$('div#loginbox').effect('shake', {times:3,direction:'right',distance:50}, 100);
		}

		if (__msg == true)
		{
			setTimeout(function()
			{
				$('td#msg div').fadeOut(1500)
			}, 2500);
		}
	}
	setTimeout(function(){
		var loc = document.location + '';
		if (loc.indexOf('#') > 0){
			loc = loc.substr(loc.indexOf('#')+1);
			$("input[name=internalhref]").val(loc);
		}
	} , 200);
});
