$(document).ready(function(){
	$('.menulist').children('li').children('a').mouseover(function(){
		if ($(this).attr('class').length>0){
			var submenuId = '#'+$(this).attr('class');
			$(submenuId).show();
		}
	});
	$('.menulist').children('li').children('a').mouseout(function(){
		if ($(this).attr('class').length>0){
			var submenuId = '#'+$(this).attr('class');
			$(submenuId).hide();
		}
	});
	
	$('.menuSub').mouseover(function(){
		$(this).show();
	});

	$('.menuSub').mouseout(function(){
		$(this).hide();
	});
	

	var menuStartLeft = $('.menulist').position().left;
	
	$('.menulist').children('li').each(function(){
		var thisLeftValue = $(this).position().left-menuStartLeft;
		if ($(this).children('a').attr('class').length>0){
			var submenuId =  '#'+$(this).children('a').attr('class');
			$(submenuId).css('left',thisLeftValue);
		}
	});
	
	var menuStartLeft;
	
});
