/**************************/
/********** TKM ***********/
/**** 3c-evolution 2011****/
/**************************/

function closeAllMapItemContent()
{
	$(".mapList-item-content").each(function(){
		$(this).slideUp();
		$(this).parent().animate({ backgroundColor: "#F0F0F0"}, 400);
		$(this).parent().children(".mapList-item-title").animate({ color: "#c8d02c"}, 400);
	});
}

function bonmail(mailteste)

{
	var reg = new RegExp('^[a-z0-9]+([_|\.|-]{1}[a-z0-9]+)*@[a-z0-9]+([_|\.|-]{1}[a-z0-9]+)*[\.]{1}[a-z]{2,6}$', 'i');

	if(reg.test(mailteste))
	{
		return(true);
	}
	else
	{
		return(false);
	}
}


