﻿$(document).ready(function() {
	$.hotkeys.add('shift+h', {propagate: false, type: 'keyup', disableInInput: true}, function(){self.location = "/index.ashx";});	
    $.hotkeys.add('shift+a', {propagate: false, type: 'keyup', disableInInput: true}, function(){self.location = "/about.ashx";});	
    $.hotkeys.add('shift+c', {propagate: false, type: 'keyup', disableInInput: true}, function(){self.location = "/contact/index.ashx";});
    $.hotkeys.add('shift+m', { propagate: false, type: 'keyup', disableInInput: true }, function() { self.location = "/contact/mailform.ashx"; });
    $.hotkeys.add('shift+r', { propagate: false, type: 'keyup', disableInInput: true }, function() { self.location = "/calendar.ashx"; });
    $.hotkeys.add('shift+e', {propagate: false, type: 'keyup', disableInInput: true}, function(){self.location = "/examples.ashx";});	
    $.hotkeys.add('shift+g', {propagate: false, type: 'keyup', disableInInput: true}, function(){self.location = "/resource/blogs.ashx";});
    $.hotkeys.add('shift+t', {propagate: false, type: 'keyup', disableInInput: true}, function(){self.location = "/resource/tools.ashx";});
    $.hotkeys.add('shift+b', {propagate: false, type: 'keyup', disableInInput: true}, function(){self.location = "/blog";});
    $.hotkeys.add('shift+p', {propagate: false, type: 'keyup', disableInInput: true}, function(){self.location = "/playground.ashx";});
});