

function Papercut() {
	this.loaderlock = false;
	this.baseHref = "http://www.coolperthnights.com/";
}

Papercut.prototype.init = function(e) {

		Element.extend(document.body);


		if ($('MailingList_Email')) {
			var emailwords = "enter your email";
			if ($('MailingList_Email').value=='') {
				$('MailingList_Email').value = emailwords;
			}
			$('MailingList_Email').observe('focus',function(e){
				if (this.value==emailwords) {
					this.value = '';
				}
			});
			$('MailingList_Email').observe('blur',function(e){
				if (this.value=='') {
					this.value = emailwords;
				}
			});		
		}

	
}


function initPapercut() {
	Papercut.init();
}
var Papercut = new Papercut();

document.observe('dom:loaded',initPapercut);