$(function(){//onload start
		   
//ΚδΘλΏςΡωΚ½
$(".inputBox").focus(function(){
	$(this).addClass("inputBox_on");
});
$(".inputBox").blur(function(){
	$(this).removeClass("inputBox_on");
});


$("#top_reg,#top_home").hover(
	function(){
		$(this).addClass("on");
		$(this).find(".float").show();
	},
	function(){
		$(this).removeClass("on");
		$(this).find(".float").hide();
	}
);

});//onload end
