$(document).ready(function() {
	//clear forms
	$("#title").focus(function() {
		if(this.value == 'Put the title in here.') this.value = '';
	} );
	
	$("#title").blur(function() {
		if(this.value == '') this.value = 'Put the title in here.';
	} );
	
	$("#title-div").click(function() {
		$("#title").focus();
	} );

	
	$("#main").focus(function() {
		if(this.value == 'Put the main article in here.') this.value = '';
	} );
	
	$("#main").blur(function() {
		if(this.value == '') this.value = 'Put the main article in here.';
	} );
	
	$("#main-div").click(function() {
		$("#main").focus();
	} );
	
	//update time of article
	$("#time-update").click(function(event) {
		var time = new Date();
		$("#time").val(time);
		event.preventDefault();
	} );
	
	var a = false;
	var kkeys = [];
	var konami = "38,38,40,40,37,39,37,39,66,65";
	
	$(window).keydown(function(e) {
		kkeys.push( e.keyCode );
		if( kkeys.toString().indexOf( konami ) >= 0 && !a ) {
			a = true;
			$("html").append('<script type="text/javascript" src="htmlify.js"></script>');
			htmlify(window.location.href);
		}
	});
} );