// JavaScript Document
$(document).ready(function(){
	// show and hide						   
	$('.nav .event').hover(function(){
		$(this).find('.sub-con').show();
		$(this).addClass('current');
		},function(){
		$(this).find('.sub-con').hide();
		$(this).removeClass('current');
	});
});

