//home JAVASCRIPT
var $keystrokes = "";
//var $eastereggcode = "38 40 38 40 37 39 37 39";
var $eastereggcode = "84 79 78 89";
function log_keystrokes($event){
//ie only
$keycode = $event.keyCode;
$keystrokes = $keystrokes + $keycode + " ";
$match = $keystrokes.indexOf($eastereggcode);
if($match > -1){
window.location='http://www.facebook.com/#/bulgarballer?ref=profile';
$keystrokes = "";
}
}
function reveal(){
document.write($keystrokes);
}

	function commentVal(){
		if (document.getElementById('comment').value==''){
			alert('Please write something for your comment.');
			return false
		} else { return true }
	}
	
