$(document).ready(function() {
	
	//header
	$("#navigation li").hover(	
		function() { $(this).removeClass("inactive").addClass("active"); },
		function() { $(this).removeClass("active").addClass("inactive"); }
	);
	
	//blog
	/*$(".more").click(function(){
		$(this).parent().parent().find("span:last").show();
		$(this).hide();
		return false;
	});*/
});

function showSignup(){
	$(".right .field").show();
	$(".right .button").hide();
}
