/*
	Basic.js
	--------
	
	Basic JavaScript functionality for JessicaHough.com
	Author: Jessica Hough
	Created: 2/15/10
*/

// Creates the copyright information
// Created: 2/15/10
// Last Edited: 2/15/10
function copyright() {
	var date = new Date();
	var year = date.getFullYear();
	document.write("&copy; " + year + " Jessica Hough");
}
