// JavaScript Document


/*
$(document).ready(function(){
	//load();
	$('.moduleTitle a').each(function(){
		$(this).click(function(){
			$(this).parent().next().slideToggle("normal");
			return false;
		});
	});
});
*/


function eMailRewrite(id) {
	var element=document.getElementById(id);
	var source=element.innerHTML;
	//alert(text);
	var regString=/kukacka|KUKACKA|Kukacka/g;
	element.innerHTML=source.replace(regString,'@');
}


$(document).ready(function(){
	$('.formElement').each(function(index){
		$(this).mouseover(function(){
			//$(this).css("background-color","#EEE");
		});
		$(this).mouseout(function(){
			//$(this).css("background-color","");
		});
	});
});
