function message() {	
	var randomnumber=Math.floor(Math.random()*9);
	var message;
	switch(randomnumber) {
		case 0:
			message = "Sweet your actually using this :) ";
			break;
		case 1:
			message = "Power users ROCK!!!";
			break;
		case 2:
			message = "A Mouse is for... you know the rest :p";
			break;
		case 3:
			message = "Thank you for visiting IsaacCreative.com";
			break;
		case 4:
			message = "My wife thinks I'm such a nerd";
			break;
		case 5:
			message = "You GO Power User :0 ";
			break;
		case 6:
			var browserName = navigator.platform; 
			message = "Wait... my psychic powers are telling me something... You are using a " + browserName + " computer.";
			break;
		case 7:
			var browserName = navigator.platform; 
			message = "That's right... keep on eating up my bandwidth :)";
			break;
		default:
			message = "Sweet your actually using this ;)";
			break;
	}
	return message;
}
//Home
shortcut.add("Ctrl+0",function() {
	alert(message());						   	
	window.location='http://isaaccreative.com';
	},{
	'type':'keydown',
	'propagate':true,
	'target':document
});
//Portfolio
shortcut.add("Ctrl+1",function() {
	alert(message());
	window.location='http://isaaccreative.com/public/index/portfolio';
	},{
	'type':'keydown',
	'propagate':true,
	'target':document
});
//About
shortcut.add("Ctrl+2",function() {
	alert(message());						   
	window.location='http://isaaccreative.com/public/index/about';
	},{
	'type':'keydown',
	'propagate':true,
	'target':document
});
//Showcase
shortcut.add("Ctrl+3",function() {
	alert(message());						   
	window.location='http://isaaccreative.com/public/index/showcase';
	},{
	'type':'keydown',
	'propagate':true,
	'target':document
});
//Projecs
shortcut.add("Ctrl+4",function() {
	alert(message());
	window.location='http://isaaccreative.com/public/index/projects';
	},{
	'type':'keydown',
	'propagate':true,
	'target':document
});
//Blog
shortcut.add("Ctrl+5",function() {
	alert(message());
	window.location='http://isaaccreative.com/public/index/blog';
	},{
	'type':'keydown',
	'propagate':true,
	'target':document
});
//Store
shortcut.add("Ctrl+6",function() {
	alert(message());
	window.location='http://isaaccreative.com/public/store';
	},{
	'type':'keydown',
	'propagate':true,
	'target':document
});
//Color Explorer
shortcut.add("Ctrl+7",function() {
	alert(message());
	window.location='http://isaaccreative.com/public/colorexplorer/index/';
	},{
	'type':'keydown',
	'propagate':true,
	'target':document
});
//Contact
shortcut.add("Ctrl+8",function() {
	alert(message());
	window.location='http://isaaccreative.com/public/index/contact';
	},{
	'type':'keydown',
	'propagate':true,
	'target':document
});