document.observe("dom:loaded", function() {
shine();
});


function shine(){
$('wrapper').appear({ duration: 0.3});
}

function hoover_item(item){
document.getElementById("st_nr_"+item).style.border="solid red 1px";
document.getElementById("stueck_text"+item).style.color = "#FF0000";
}

function outof_item(item){
document.getElementById("st_nr_"+item).style.border="solid #FFFFFF 1px";
document.getElementById("stueck_text"+item).style.color = "#FFFFFF";
}

function goto_item(item){
location.href='index.php?article_id='+item;
// target _blank: window.open('index.php?article_id='+item);
}

function stueck_navi() {
if (navigator.appName.indexOf("Explorer") != -1){
document.getElementById("header").style.backgroundImage="url('images/buo_logo_balken_top.jpg')";
document.getElementById("td_l_nf").style.backgroundImage="url('images/shadow_left.gif')";
document.getElementById("td_l_f").style.backgroundImage="url('images/shadow_left.gif')";
document.getElementById("td_r_nf").style.backgroundImage="url('images/shadow_right.gif')";
document.getElementById("td_r_f").style.backgroundImage="url('images/shadow_right.gif')";
}
}

function hoover_t(item){
document.getElementById("st_nr_"+item).style.border="solid red 1px";
document.getElementById("stueck_text"+item).style.color = "#FF0000";
}

function outof_t(item){
document.getElementById("st_nr_"+item).style.border="solid #333 1px";
document.getElementById("stueck_text"+item).style.color = "#FFFFFF";
}


function show_tv(id){
$('tv').fade({ duration: 0.3, from: 0, to: 1 });
}

function hide_tv(){
$('tv').fade({ duration: 0.3, from: 1, to: 0 });
}


