
	function ChangeActive (this_obj, content_id)
	{
		
		for(i=0;i<this_obj.parentNode.parentNode.getElementsByTagName("A").length;i++) {
			this_obj.parentNode.parentNode.getElementsByTagName("A")[i].className = "";
		}
		
		for(i=0;i<this_obj.parentNode.parentNode.getElementsByTagName("SPAN").length;i++) {
			this_obj.parentNode.parentNode.getElementsByTagName("SPAN")[i].className = "";
		}
		
		this_obj.className = "active";
		
		for(i=0;i<this_obj.childNodes.length;i++) {
			if(this_obj.childNodes[i].tagName == "SPAN")
				this_obj.childNodes[i].className = "active";
		}
		
		this_obj.blur();
	
	getDivContent(this_obj.parentNode.parentNode.parentNode.parentNode,content_id);

	}
	
	function getDivContent (reiter_obj,id)
	{
		var divs = reiter_obj.getElementsByTagName("DIV");
		var objOne, objTwo;
		
		for(i=0; i< divs.length; i++)
			if(divs[i].className == "contents") {
				content_obj = divs[i];
				
				for(j=0; j< content_obj.childNodes.length; j++)
					if(content_obj.childNodes[j].tagName == "DIV") {
						
						if(content_obj.childNodes[j].className == "normal_box_corner")
							objOne = content_obj.childNodes[j];
							
						if(content_obj.childNodes[j].className == "normal_box_bottom")
							objTwo = content_obj.childNodes[j];
								
						if(content_obj.childNodes[j].id != id)
							new Effect.Fade(content_obj.childNodes[j], { duration: 0.0 });
						else
							new Effect.Appear(content_obj.childNodes[j], { duration: 1.0, from:0.1, to:1.0 });
							
					}
			}
			
			new Effect.Appear(objOne, { duration: 1.0, from:0.1, to:1.0 });
			new Effect.Appear(objTwo, { duration: 1.0, from:0.1, to:1.0 });
		
	 /*if (!document.phpAds_used) document.phpAds_used = ',';
   phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
   
   new_banner_script = "<" + "script language='JavaScript' type='text/javascript' src='http://adserver.vva.de/adserver/adjs.php?n=" + phpAds_random + "&amp;what=247&amp;block=1&amp;exclude=";
   
	 if (document.referrer)
      new_banner_script += "&amp;referer=" + escape(document.referrer);
   
	 new_banner_script += "'><" + "/script>";
		
	 document.getElementById('banner_1').innerHTML = new_banner_script;
	 alert(document.getElementById('banner_1').innerHTML);*/
	 
	 
	}

