// 2006-11-27 - Added overloaded function with ID
function runFlash(movie, width, height) {
document.write('');
}
function runFlash(movie, width, height, idname) {
document.write('');
}
var mwCurrent = false;
function mwOver(baseid) {
if(baseid != mwCurrent)
document.getElementById(baseid).className = 'hover';
}
function mwOut(baseid) {
if(baseid != mwCurrent)
document.getElementById(baseid).className = 'normal';
}
function mwClick(baseid) {
if(baseid == mwCurrent) {
document.getElementById(mwCurrent).className = 'normal';
document.getElementById(mwCurrent+'_tekst').className = 'hide';
mwCurrent = false;
} else {
if(mwCurrent) {
document.getElementById(mwCurrent).className = 'normal';
document.getElementById(mwCurrent+'_tekst').className = 'hide';
}
document.getElementById(baseid).className = 'active';
document.getElementById(baseid+'_tekst').className = 'tekst';
mwCurrent = baseid;
}
}
$(window).load(function() {
/* Language Menu */
/*
$('#langNav').hover (
function () {
$(this).doTimeout('langNav');
$(this).children('ul').show();
},
function () {
$(this).doTimeout('langNav', 2000, function(){
$(this).children('ul').fadeOut(400);
}, true);
}
);
*/
});