function roundCorners() {
if(!NiftyCheck())
    return;
RoundedTop("div#content","#FFFFFF",maincolor);
RoundedBottom("div#content","#FFFFFF","rgb(230,230,230)");
RoundedTop("div.vzkaz","rgb(230,230,230)",maincolor);
RoundedBottom("div.vzkaz","rgb(230,230,230)","white");
}
window.onload=function() {
  roundCorners();
  init();
}
function init() {
	stripeTableById('table1');
}
function stripeTable(t) {
	var i, odd = true;
	for (i=0; i<t.rows.length; i++) {
		t.rows[i].className += odd ? ' odd' : ' even';
		odd = !odd;
		}
	}
function stripeTableById(id) {
	var t = document.getElementById(id);
	if (t) stripeTable(t);
	}
function select(id, ida) {
  var restcolor="white";
  var selcolor="red";
		document.getElementById("vzkazy").style.color=restcolor;
		document.getElementById("seznam").style.color=restcolor;
		document.getElementById("fotogalerie").style.color=restcolor;
		document.getElementById("mp3").style.color=restcolor;
  document.getElementById(ida).style.color="black";
  document.getElementById(id).style.backgroundColor="rgb(240,240,240)";
  if(NiftyCheck()) {
    RoundedTop("li#" + id,maincolor,"rgb(240,240,240)");
  }
}

