function loadPage(x){
	var domain = document.domain;
	var x = x.replace("http://"+domain+"/",'');
	var x = "/partial/"+x;
	var x = x.replace("ial//","ial/");
	$('#content').fadeOut('fast',function(){
		$('#content').load(x,"",function(){$('#content').fadeIn('fast');});
	});
	return false;
}

$(document).ready(function () {
	$("#content").hide().fadeIn(1000,function(){ifauthd();});
	$('a.lva').live("click",function(){
		loadPage($(this).attr('href'));
		return false;
	});
	$('a.ext').live("click",function(){
		window.open($(this).attr('href'));
		return false;
	});
});