

$(document).ready(function(){

	$("#secondnav li").hover(
		function() 
		{
			$(this).addClass("over");
		}, 
		function()
		{
			$(this).removeClass("over");
		}
	);
	
});

function email(login, sc, intitle)
{
	if (intitle == undefined) {intitle = "промбезопасность"};
 	var serv = new Array;
	serv[0] = 'orfi.ru';
	serv[1] = 'mail.ru';
	serv[2] = 'ya.ru';
	emll = login +  '@' + serv[sc];
	eml = '<a title=' + intitle + ' href=mailto:' + emll + '>' + emll + '</a>';
	return eml;
}

function mylo (login, sc, intitle)
{
	document.write (email(login, sc, intitle));
}

