function mouseOver1()
{
document.getElementById("b1").src ="tapahtumat_2.jpg";
}
function mouseOut1()
{
document.getElementById("b1").src ="tapahtumat.jpg";
}

function mouseOver2()
{
document.getElementById("b2").src ="info_2.jpg";
}
function mouseOut2()
{
document.getElementById("b2").src ="info.jpg";
}


function mouseOver3()
{
document.getElementById("b3").src ="galleria_2.jpg";
}
function mouseOut3()
{
document.getElementById("b3").src ="galleria.jpg";
}


function mouseOver4()
{
document.getElementById("b4").src ="vieraskirja_2.jpg";
}
function mouseOut4()
{
document.getElementById("b4").src ="vieraskirja.jpg";
}

function mouseOver5()
{
document.getElementById("b5").src ="osallistu_2.jpg";
}
function mouseOut5()
{
document.getElementById("b5").src ="osallistu.jpg";
}

//variable that will increment through the images
var step=1
//a variable that will keep track of the image currently being displayed.
var whichimage=1

function slideit()
{
//if browser does not support the image object, exit.
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src")
whichimage=step
if (step<3)
step++
else
step=1
//call function "slideit()" every 2.5 seconds
setTimeout("slideit()",2500)
}

function slidelink(){
if (whichimage==1)
window.location="http://www.beatsandstyles.com/beatsandstyles"
else if (whichimage==2)
window.location="http://www.annelimattila.net"
else if (whichimage==3)
window.location="http://www.sturmunddrang.fi/"
}
