// JavaScript Document for The Northernness website

jQuery(document).ready(function($){

// get rid of bottom borders in columns

	$(".column h4:last-child").css("border", "none");
	$("#tracks p:last-child").css("border", "none");

// Input value disappears onFocus 

	$("input").focus(function (){
         $(this).removeAttr("value");
    });

});