$(document).ready(function() {
	$('ul.events li').each(function() {
		$(this).mouseover(function() { $(this).children('ul').show() });
		$(this).mouseout(function() { $(this).children('ul').hide() });	
	}).children('ul').css('width', '200px').hide();
});
