$(function()
{
	$('.topmenu A').mouseover(function()
	{
		var id = $(this).attr('id');
		var position = $(this).position();
		var sol = position.left;

		$('.submenu').hide();
		$('#sub'+id).css('left', sol+'px');
		$('#sub'+id).show();
	}).mouseout(function()
	{
		var id = $(this).attr('id');
		$(this).removeClass('topmenuhovered');
		$('#sub'+id).hide();
	});

	$('.submenu').mouseover(function()
	{
		var thisid = $(this).attr('id');
		var thisid = thisid.substring(3);
		$('#'+thisid).addClass('topmenuhovered');
		$(this).show();
	}).mouseout(function()
	{
		var thisid = $(this).attr('id');
		var thisid = thisid.substring(3);
		$('#'+thisid).removeClass('topmenuhovered');
		$(this).hide();
	});
});
