$(document).ready(function(){
	$(".first").hover(function() {

		$(".select").removeClass("select");
		$(".third").hide();
	 
		$(this).parent().addClass("select"); 
		$(".select .third").show();
		});
});
