$(document).ready(function(){
	// index page modify
	if ($('body').attr('id') == "index") {
		$index = $("#tags li").index($("#tags li.selectTag"));
		$("#tags li").each(function(){
			$(this).mouseover(function(){
				if ($(this).attr('class')!=="selectTag") {
					$("#tags li:eq(" + $index + ")").removeClass("selectTag");
					$("#tagContent > div:eq(" + $index + ")").removeClass("selectTag");
					$index = $("#tags li").index($(this));
					$("#tags li:eq(" + $index + ")").addClass("selectTag");
					$("#tagContent > div:eq(" + $index + ")").addClass("selectTag");
				}
			});
		});	
	}

	$(".submenu").each(function() {
		$(this).mouseout(function() {
			$(this).hide();
		})
		$(this).mouseover(function() {
			$(this).show();
		});
	});
	$(".submenu").parent("li").each(function() {
		$(this).mouseover(function() {
			$(this).children(".submenu").show();
		});
		$(this).mouseout(function() {
			$(this).children(".submenu").hide();
		});
	});
});
