$(document).ready(function() {
	
	$("textarea.message").val("");
	$("section").hide();
	$("section.a").show();
	
	$("textarea.message").live("keyup", function(){
		var count = $(this).val().length;
		var rest = 130 - count;
		$("span.counter").text(rest);
		
		if(rest < 0){
			$("input.submit").hide();
		}else{
			$("input.submit").show();
		}
	});
	
	$("section.profile input").focus(function(){
		$(this).select();
	});
	
	$("nav#global ul li").live("hover", function(){
		$("nav#global ul li").removeClass("here");
		$("section").hide();
		$(this).addClass("here");
	});
	
	$("nav#global ul li.a").live("hover", function(){ $("section.a").show(); });
	$("nav#global ul li.b").live("hover", function(){ $("section.b").show(); });
	$("nav#global ul li.c").live("hover", function(){ $("section.c").show(); });
	$("nav#global ul li.d").live("hover", function(){ $("section.d").show(); });
	$("nav#global ul li.e").live("hover", function(){ $("section.e").show(); });
});
