$(document).ready(function(){
	$("#homepage_top_menu .img_unit .desc").hide().eq(0).show();
	$("#homepage_top_menu .img_unit").mouseover(function(){
		$(this).children(".desc").show();
		$(this).siblings().children(".desc").hide();
		$(this).toggleClass("img_on");
		$(this).siblings().removeClass("img_on");
	});
});
