 
 // slider and gallery inits
  $(document).ready(function(){
    $(".gallery a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_rounded'});
  });
  $(function(){ $('#loopedSlider').loopedSlider(); });
  
  
  // rotating images
  var arr = new Array("01","02","03","04","05","06","07","08","09");
  
  function RotateImages(whichHolder,Start) {
  	var a = eval("arr");
  	if(Start>=a.length)
  		Start=0;
  	eval(document.getElementById('Rotating1')).src = "./img/rnd/" + a[Start] + ".jpg";
  	window.setTimeout("RotateImages("+1+","+(Start+1)+")",4000);
  }
  
  RotateImages(1,0);
  
  
  //-> change video image
  function chis(ts) {
    document.getElementById('vdg').src = "./img/vdo_p_" + ts + ".jpg";
  }
  
  
//->hide content
function HideContent(d) {
  if(d.length < 1) { return; } document.getElementById(d).style.display = "none"; 
}
function ShowContent(d) {
  if(d.length < 1) { return; } document.getElementById(d).style.display = "block";
}
function ReverseContentDisplay(d) {
  if(d.length < 1) { return; }
  if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
  else { document.getElementById(d).style.display = "none"; }
  
	document.getElementById("mer").innerHTML = (document.getElementById("mer").innerHTML != 'less' ? 'less' : 'more' );
  
}


//-> radio button redirect
function go(loc) {
window.location.href = loc;
}
  
