// Function that automatically updates the copyright year within the footer

function copyright(){
	// Create a variable that stores the Date()
        date=new Date();
        // Create a variable that stores the year
        curYear=date.getFullYear();
        // "Write" to the document current copyright info
        document.write("<p>Copyright &copy; 2010-"+curYear+" <span>Krister Nielsen</span><br />");
}

