$(document).ready(function(){
	$(".hide").hide();
	
	$(".showBox").click(function(){
		$(this).blur();
		var vId = $(this).attr("href");
		if( $(vId).is(":hidden") )
		{
			$(vId).slideDown("slow");
			$(this).css("margin-bottom", "10px");
			$(this).css("text-decoration", "underline");
		}
		else
		{
			$(vId).slideUp("slow");
			$(this).css("margin-bottom", "15px");
			$(this).css("text-decoration", "none");
		}
		return false;
	});
});
