// JavaScript Document

$(document).ready(function() { 
		$(".sub_mu ul").eq($('.main_mu a').index(0)).show().siblings().hide();
		$('.main_mu a').hover(function(){
		$(".sub_mu ul").eq($('.main_mu a').index(this)).show().siblings().hide();}
);
}); 

$(document).ready(function() { 
			$('.main_mu a').hover(function(){
			$(this).find('span').animate({top: '0px'}, "fast").show();
			$(this).siblings().find('span').animate({top: '-30px'}, "fast").show();
			$(this).find('strong').animate({top: '30px'}, "fast").show();
			$(this).siblings().find('strong').animate({top: '0px'}, "fast").show();
		},function () {
		});
}); 
$(document).ready(function() { 
		$('.sub_mu').slideToggle("fast").show();

}); 
$(document).ready(function() { 
		$('.list2 li').hover(function(){
				$(this).find('span').fadeIn("fast");
		},function () {
				$(this).find('span').fadeOut("slow");
		});
}); 
