$(function(){
	accentsTidy = function(s){
		var r=s.toLowerCase();
		r = r.replace(new RegExp(/\s/g),"");
		r = r.replace(new RegExp(/[àáâãäå]/g),"a");
		r = r.replace(new RegExp(/æ/g),"ae");
		r = r.replace(new RegExp(/ç/g),"c");
		r = r.replace(new RegExp(/[èéêë]/g),"e");
		r = r.replace(new RegExp(/[ìíîï]/g),"i");
		r = r.replace(new RegExp(/ñ/g),"n");                
		r = r.replace(new RegExp(/[òóôõö]/g),"o");
		r = r.replace(new RegExp(/œ/g),"oe");
		r = r.replace(new RegExp(/[ùúûü]/g),"u");
		r = r.replace(new RegExp(/[ýÿ]/g),"y");
		r = r.replace(new RegExp(/\W/g),"");
		return r;
	};

	$('div#content-menu > div > ul > li').each(function(e){
		$(this).attr('id', 'sub-menu-'+accentsTidy($(this).find('a:first').text().toLowerCase().split(' ').join('')));
	});
	
	
	
	$("div#support-submenu").css({ 'height' : '0px' });
	$("div#tarja-sub-menu").css({ 'height' : '0px' });
	$("img.marcador-sub-menu").hide();
	
	$("div#tarja-sub-menu").parent().hover(function(){
		
		$('#support-submenu').stop().animate({ 'height' : '36px' }, 'fast');
		$(this).find("img.marcador-sub-menu").fadeIn('fast');
		$(this).find("div#tarja-sub-menu").stop().animate({ 'height' : '36px', 'z-index' : '99' }, 'fast');
		//$('div#support-submenu').stop().animate({ 'height' : '1136px' }, 'fast');
		//$('#support-submenu').slideDown();
		//$('#content-menu').css({ 'height' : '500px' });
		
	},function(){
		
		$('#support-submenu').stop().animate({ 'height' : '0px' });
		$(this).find("img.marcador-sub-menu").fadeOut();
		$(this).find("div#tarja-sub-menu").stop().animate({ 'height' : '0px', 'z-index' : '1' });
		//$('div#support-submenu').stop().animate({ 'height' : '0px' });
		//$('#support-submenu').slideUp();
		
	});
	
});
