admindir = "123456";

// EDITACE PANELU
function editpanel(wchpanx,wchprx,wchclx,widthx){
	ep=window.open(admindir+"/editpanel.php?komp="+wchpanx+"&prirazeno="+wchprx+"&class="+wchclx+"&maxwidth="+widthx+"","admin","width=200,height=200,left=100,top=100,status=1,scrollbars=1,resizable=1"); ep.focus(); 
}

// POHYB HORNIHO MENU
$(document).ready( function() {						   
	$("#butt1").mouseover(function(){ $("#butt1").animate({"top": "-=10px"}, "fast"); }); $("#butt1").mouseout(function(){ $("#butt1").animate({"top": "+=10px"}, "fast"); });
	$("#butt2").mouseover(function(){ $("#butt2").animate({"top": "-=10px"}, "fast"); }); $("#butt2").mouseout(function(){ $("#butt2").animate({"top": "+=10px"}, "fast"); });
	$("#butt3").mouseover(function(){ $("#butt3").animate({"top": "-=10px"}, "fast"); }); $("#butt3").mouseout(function(){ $("#butt3").animate({"top": "+=10px"}, "fast"); });
	$("#butt4").mouseover(function(){ $("#butt4").animate({"top": "-=10px"}, "fast"); }); $("#butt4").mouseout(function(){ $("#butt4").animate({"top": "+=10px"}, "fast"); });
	$("#butt5").mouseover(function(){ $("#butt5").animate({"top": "-=10px"}, "fast"); }); $("#butt5").mouseout(function(){ $("#butt5").animate({"top": "+=10px"}, "fast"); });
	$("#butt6").mouseover(function(){ $("#butt6").animate({"top": "-=10px"}, "fast"); }); $("#butt6").mouseout(function(){ $("#butt6").animate({"top": "+=10px"}, "fast"); });
});	

// EDITACE SOUBORU
function opwin(wchscrpt){
	wchwin=window.open(wchscrpt,"wchwin","width=980,height=700,left=100,top=100,status=1,scrollbars=1,resizable=1"); wchwin.focus(); 
}

function nactivice(idaktx){ // AKTUALITY - ZOBRAZ VICE
	$("#div_akt_"+idaktx).load("admin/eaktuality_ajax.php",{idakt:idaktx,kolikakt:"vice"}); 
	$("#vice_"+idaktx).hide(); $("#mene_"+idaktx).show(); 
	
}
function nactimene(idaktx){ // AKTUALITY - ZOBRAZ MENE
	$("#div_akt_"+idaktx).load("admin/eaktuality_ajax.php",{idakt:idaktx,kolikakt:"mene"}); 
	$("#vice_"+idaktx).show(); $("#mene_"+idaktx).hide(); 
}

