var delay_timeout;
function full_load(page,lang)
{
	$('document').ready(function(){$('body').fadeOut('slow',function(){$(this).load('pages_'+lang+'/'+page+'.php',function(){$(this).fadeIn();window.location.hash = lang+'-'+page})})});
	clearTimeout(delay_timeout);
	return false;
}
function full_load_delay(page,lang,delay)
{
	delay_timeout = setTimeout(function(){$('body').fadeOut('slow',function(){$(this).load('pages_'+lang+'/'+page+'.php',function(){$(this).fadeIn();window.location.hash = lang+'-'+page})})},delay);
	return false;
}
function on_load()
{
	if(parent.location.hash.length > 1) window.location.href = parent.location.hash.substr(1,parent.location.hash.length-1)
	return false;
}
