
$(document).ready(function(){

	$('.roBox').click(function(){
		window.location.href = $(this).children('.roBoxConHover a:first').attr('href')
	}).mouseover(function(){
		$(this).attr('class','roBoxHover')
		$(this).children('div:first').hide()
		$(this).children('div:last').show()
	}).mouseout(function(){
		$(this).attr('class','roBox')
		$(this).children('div:last').hide()
		$(this).children('div:first').show()
	})

});
TOM.image={"info":"contains usefull functions to handle images"};TOM.image.createButtonEffekt=function(oImgObj,sOverSource,sActiveSource,bStayClicked){try{var bOver=(typeof sOverSource!=="undefined"&&sOverSource!=="")?true:false;var bActive=(typeof sActiveSource!=="undefined"&&sActiveSource!=="")?true:false;var bStayClicked=(typeof bStayClicked==="undefined")?true:bStayClicked;if(typeof oImgObj==="string"){oImgObj=document.getElementById(oImgObj);}if(typeof oImgObj==="object"&&typeof oImgObj.src==="string"){var img=oImgObj;var sDefaultSource=img.src;img.oOutImg=new Image();img.oOverImg=new Image();img.oActiveImg=new Image();img.oOutImg.src=sDefaultSource;img.oOverImg.src="";img.oActiveImg.src="";if(sOverSource&&sOverSource!==""){if(typeof sOverSource==="string"){img.oOverImg.src=sOverSource;}else if(typeof sOverSource==="object"){for(var e in sOverSource){img.oOverImg.setAttribute(e,sOverSource[e]);}}img.onmouseover=function(){if(this.src!==this.oActiveImg.src||bActive===false){this.src=this.oOverImg.src;}};img.onmouseout=function(){if(this.src!==this.oActiveImg.src||bStayClicked===false||bActive===false){this.src=this.oOutImg.src;}};}else{img.oOverImg.src=img.oOutImg.src;}if(sActiveSource&&sActiveSource!==""){if(typeof sActiveSource==="string"){img.oActiveImg.src=sActiveSource;}else if(typeof sActiveSource==="object"){for(var e in sActiveSource){img.oActiveImg.setAttribute(e,sActiveSource[e]);}}img.onmousedown=function(){if(this.src===this.oActiveImg.src&&bActive){this.src=this.oOverImg.src;}else{this.src=this.oActiveImg.src;}};if(bStayClicked===false){img.onmouseup=function(){this.src=this.oOverImg.src;};img.onmousemove=function(){this.src=this.oOverImg.src;};}}else{img.oActiveImg.src=img.oOutImg.src;}}}catch(oError){var oFunctionInfo=TOM.createFunctionInfoObj("String.prototype.contains",this,"String","TOM.js");TOM.handleError(oFunctionInfo,oError);return false;}};