$(document).ready ( function() {
	$('.toplinks li.first').hover( function() {
		$(this).addClass('active');
		var id = $(this).attr('id');
		$('.toplinks li.first ul#m_'+id).show();
	},function(){
		$(this).removeClass('active');
		var id = $(this).attr('id');
		$('.toplinks li.first ul#m_'+id).hide();
	});
});

