$(document).ready(function(){
	$("div#sub_nav").show();
	$('div.event_info_wrap').hide();

	$('a.event_label').hover(
 		function () {
 			var valName = $(this).attr('name');
 			var valPath = $(this).attr('href');
 			
 			$('.event_info_content').html($(this).next(".event_item_details").html());
 			
 			var retObj = {};
 			$(this).offset({}, retObj);
 			$('div#' + valName).show().css(retObj);
 		},
 		function () {
 			$('.event_info_content').empty();
 			
 			var valName = $(this).attr('name');
 			$('div#' + valName).hide()
 			
 			//$('div#' + valName).hide().css({'top':'','left':''});
 		}
	);
});
