$(function(){
	$(".father").hover(function(){
	 $(".father").addClass("fatherOn");
	 $(".sun").stop(true,true).slideToggle("slow");
	});		

	$(".input").hover(function(){
	    $(this).toggleClass("inputOn");
	  $(this).toggleClass("fatherOn");
	});
});	

