// JavaScript Document
$(document).ready(function() {
    $('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
});
function replaceit(_id,_text){
	obj = document.getElementById(_id).firstChild;
	obj.nodeValue = _text;
}
function wechsel(a,bild) 
{ 
window.document.images[a].src=bild; 
} 
function over(id) {
document.getElementById(id).style.color = "#222";
document.getElementById(id).style.borderColor = "#222";
}
function out(id) {
document.getElementById(id).style.color = "#999999";
document.getElementById(id).style.borderColor = "#B4B4B8";   
  }
function bgin(id) {
document.getElementById(id).style.backgroundColor = "#222";
}
function bgout(id) {
document.getElementById(id).style.backgroundColor = "#DADADA";  
  }
function check(id) {
if(this.checked){document.getElementById('test').style.display='block'};
}
function uncheck(id) {
document.getElementById(id).style.display = "none";
}

