function mail(a)
{
	document.write("<a href='mailto:"+a+"@"+"yellowcube.hu'>");
	document.write(a+"@"+"yellowcube.hu");
	document.write("</a>");
}
function mail2(a, b, c)
{
	document.write("<a href='mailto:"+a+"@"+b+"."+c+"'>");
	document.write(a+"@"+b+"."+c);
	document.write("</a>");
}
function mhmenu_open() {
    var anchor = $(this).find('a').eq(0);
    anchor.addClass('open');
    
    var dropdown = $(this).find('ul').eq(0);
    dropdown.css('top', $(this).position().top + $(this).height());
    dropdown.css('left', $(this).position().left);
    dropdown.css('visibility', 'visible');
}
function mhmenu_close() {
    var anchor = $(this).find('a').eq(0);
    anchor.removeClass('open');

    var dropdown = $(this).find('ul').eq(0);
    dropdown.css('visibility', 'hidden');
}
$(document).ready(function() {
    $('#mhmenu > li').bind('mouseover', mhmenu_open);
    $('#mhmenu > li').bind('mouseout', mhmenu_close);
});

