$(document).ready(function() {
	
	$('div.menutop').hide();
	
	$('span.toplink').hover(function() {
		
		$(this).children('div.menutop').fadeIn(100);
		var divHeight = $('div.menutop:visible').height();
		var divWidth = $('div.menutop:visible').width();
		var liHeight = divHeight*1 + 47;
		
		$(this).attr('style', 'position: absolute; top: 0; left: 0; width: '+divWidth+'px; height: '+liHeight+'px;');
		
//		$(this).css('height', liHeight+'px');
//		$(this).css('width', divWidth+'px');
		
	}, function() {
		
		$(this).removeAttr('style');
		$(this).children('div.menutop').hide();
		
	});
	
});
