$(document).ready(function(){
	$('.top-section-txt').focus(function() {
		$(this).val("");
	});
	
	$('.top-section-txt').blur(function() {
		if ($(this).val() == "") {
			$(this).val($(this)[0].defaultValue);
		}
	});

	$("#top-menu ul li").hover(function () {
    		$(this).addClass("hover");
  	}, function () {
    		$(this).removeClass("hover");
  	}); 
});
