var tipps = new Array ();
var targets = new Array ();

tipps[0] = "images/schwangerschaft_06.jpg"; 
targets[0] = "schwangerschaft.html"; 

tipps[1] = "images/energie_06.jpg"; 
targets[1] = "energiearbeit.html"; 

tipps[2] = "images/rueckfuehrung_06.jpg"; 
targets[2] = "neutrakon.html"; 

tipps[3] = "images/feng_shui_06.jpg"; 
targets[3] = "glueck_ist_planbar.html"; 

tipps[3] = "images/werbung_herzen_06.jpg"; 
targets[3] = "http://www.yin-und-yang-wellness-shop.de"; 


var max_index_tipps = tipps.length-1;
var zufall = 0;

zufall = Math.round (max_index_tipps * Math.random());


function onLoadIndex()
{
	showTipp();
}



function showTipp()
{
	document.getElementById('tipp').src=tipps[zufall];

}

function goTipp ()
{
	window.location.href=targets[zufall];
	
	return false;
	
}

