// 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');
		});
	});

