function Obarvi(_co) {
	_co.style.borderColor="#83afe3";
return true;
}

function Odbarvi(_co) {
	if (_co.style.borderColor=="white")
		{_co.style.borderColor="#83afe3";}
	else
		{_co.style.borderColor="white";}
return true;
}	

function prohod_obr (_co) {
	_velka=document.getElementById('foto1');
	if (_co.src.indexOf("_tdet1.jpg")>0) {
		novy_t = _co.src.replace(/_tdet1.jpg/g,'_tdet2.jpg') ;
		novy = _velka.src.replace(/_det2.jpg/g,'_det1.jpg') ;
	}
	else {
		novy_t = _co.src.replace(/_tdet2.jpg/g,'_tdet1.jpg');
		novy = _velka.src.replace(/_det1.jpg/g,'_det2.jpg') ;		
	}
	_co.src=novy_t;
	_velka.src=novy;				 
return true;
}


function prepni(odkaz,id){
  
	var sekce = document.getElementById("sekce"+id);
	if (sekce.style.display=='') {
		odkaz.innerHTML="více ...";
		sekce.style.display="none";
	} else {
		odkaz.innerHTML="méně ...";
		sekce.style.display="";	
	}
}


function origináltoggle(id,typ){ //prepinac zobrazeni a buttonu
  
  if(!typ) typ="";
  var map = typ ;
  var toggle1 = "#toggle"+id;
  var toggle2 = "div.toggle"+id;
  var theClass1 = "button2"+map+"-up"; 
  var theClass2 = "button2"+map+"-down"; 

	if ( $(toggle2).length ){		
		if ( $(toggle1).length  ){	 
	    if ( $(toggle2).is(':hidden') ){
		    $(toggle1).removeClass(theClass2).addClass(theClass1);
		      if(typ!="map"){
		        $(toggle1).wrapInner("<a href='javascript:void(0);' onclick=\"toggle('"+id+"');\"><span>skrýt</span></a>");
		      }
		  }else{
		    $(toggle1).removeClass(theClass1).addClass(theClass2);
		       if(typ!="map"){
		        $(toggle1).wrapInner("<a href='javascript:void(0);' onclick=toggle('"+id+"');><span>rozbalit</span></a>");
		       }
		  }
		 }
       $(toggle2).toggle("slow");
	}
}
