function check(was)
{switch (was)
{

case "start":
wechseln("http://www.bundb-deko.de/start.html","http://www.bundb-deko.de/top.html");
break;


case "feste":
wechseln("http://www.bundb-deko.de/feste.html","http://www.bundb-deko.de/top_feste.html");
break;

case "verpackungen":
wechseln("http://www.bundb-deko.de/verpackungen.html","http://www.bundb-deko.de/top_verpack.html");
break;

case "events":
wechseln("http://www.bundb-deko.de/events.html","http://www.bundb-deko.de/top_events.html");
break;

case "raumdeko":
wechseln("http://www.bundb-deko.de/raumdeko.html","http://www.bundb-deko.de/top_raumdeko.html");
break;

case "kontakt":
wechseln("http://www.bundb-deko.de/kontakt.html","http://www.bundb-deko.de/top_kontakt.html");
break;



case "p_hochzeit":
wechseln("http://www.bundb-deko.de/p_hochzeit.html","http://www.bundb-deko.de/top_p_hochzeit.html");
break;
case "p_raumdeko":
wechseln("http://www.bundb-deko.de/p_raumdeko.html","http://www.bundb-deko.de/top_p_raumdeko.html");
break;
case "p_specials":
wechseln("http://www.bundb-deko.de/p_specials.html","http://www.bundb-deko.de/top_p_specials.html");
break;
case "p_strauss":
wechseln("http://www.bundb-deko.de/p_strauss.html","http://www.bundb-deko.de/top_p_strauss.html");
break;
case "p_tisch":
wechseln("http://www.bundb-deko.de/p_tisch.html","http://www.bundb-deko.de/top_p_tisch.html");
break;
case "p_trauer":
wechseln("http://www.bundb-deko.de/p_trauer.html","http://www.bundb-deko.de/top_p_trauer.html");
break;

}

}

function wechseln(mainFrame,topFrame)
{
parent.frames[2].location.href=mainFrame;
parent.frames[1].location.href=topFrame;

}