

/********************************************* MouseOver-Funktion ************************************************/

function wechsel(quelle,bild) {
   document.images[bild].src=quelle;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////



/************************************************** Dia-Show *****************************************************/
function diashow(){
    var count = bilder.length -1;	
	var a = Math.round(count*Math.random());
	dia = bilder[a];
    document.getElementById('machmit1').src = dia;    
	window.setTimeout ('diashow()' , 6000)
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

/**************** PopUp-Fenster************************************/
function popup (url) {
 fenster = window.open(url, "Popupfenster", "width=600,height=450,resizable=yes, menubar=yes");
 fenster.focus();
 
 return false;
}
///////////////////////////////////////////////////////////////////////


$(document).ready(function(){

    lHeight = $('#links').height();
    mHeight = $('#mitte').height();
    if ( lHeight > mHeight ) {
        lHeight += 40;
        $('#text').css('height', lHeight + 'px');
    }

});

