function pos_shadow() {

	if($jquery('#float').css('display') != "none") {
		$jquery('#float').width($jquery("body").width());
		$jquery('#float').height($jquery(document).height());
	}

}

function loadto(page) {

	$jquery('#float').load(page, function(){
		$jquery('#float').show();
		pos_shadow()
	})

}

// MENU ZAR
function zar() {

		$jquery("div[zone='menu']").each(function() {
			$jquery(this).fadeOut('fast');
		});	

		$jquery("a[id$='_gomb']").each(function() {
			$jquery(this).css('border-bottom','4px solid #008FCF');
			$jquery(this).css('background','transparent');
			$jquery(this).css('color','white');
		});	

}

// MENU NYIT
function nyit(mit) {
	var allapot = $jquery("#"+mit).css('display');
	zar();

	if(allapot=='none') {
		$jquery("#"+mit+"_gomb").css('border-bottom','4px solid white');
		$jquery("#"+mit+"_gomb").css('background','white');
		$jquery("#"+mit+"_gomb").css('color','#00364A');
		$jquery("#"+mit).fadeIn('fast');
		$jquery("#"+mit+"_arnyek").css('top',$jquery("#"+mit).outerHeight()+"px");

	}
}

window.onresize=pos_shadow; 
