$(function(){
	$(".showBoxUl a").eq(0).addClass("hover");
	$(".innerShowBoxLi").eq(0).removeClass('hidden');
	$(".showBoxUl a").mouseover(function(){
		$(".showBoxUl a").removeClass("hover");
		$(this).addClass("hover");
		$(".innerShowBoxLi").addClass('hidden');
		$(".showBoxUl a").each(function(i){
			if($(this).hasClass("hover"))
			{
				$(".innerShowBoxLi").eq(i).removeClass('hidden');
			}
		});
	});
/*	$(".noticeTitle li").mouseover(function(){
		$(".noticeTitle li").removeClass("hover");
		$(this).addClass("hover");
		$(".noticeContent").addClass('hidden');
		$(".noticeTitle li").each(function(i){
			if($(this).hasClass("hover"))
			{
				$(".noticeContent").eq(i).removeClass('hidden');
			}
		});
	});*/
	
	$(".innerCategories").addClass('evenLine');
	$(".innerCategories:nth-child(odd)").addClass('odd');
});
