﻿$(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

