function hotKeyAssign(){
    jQuery(document).bind('keydown', {combi:'left', disableInInput: true},function (evt){
        showPreviousImage();
        return false;
    });
    jQuery(document).bind('keydown', {combi:'right', disableInInput: true},function (evt){
        showNextImage();
        return false;
    });
    jQuery(document).bind('keydown', {combi:'i', disableInInput: true},function (evt){
		showGallery();
        return false;
    });
    jQuery(document).bind('keydown', {combi:'c', disableInInput: true},function (evt){
		leaveComment();
        return false;
    });
    jQuery(document).bind('keydown', {combi:'f', disableInInput: true},function (evt){
		facebookPhoto();
        return false;
    });
    jQuery(document).bind('keydown', {combi:'t', disableInInput: true},function (evt){
		showTagPhotos();
        return false;
    });
}

function hotKeyDisable(){
    jQuery(document).unbind('keydown', {combi:'left', disableInInput: true},function (evt){
        showPreviousImage();
        return false;
    });
    jQuery(document).unbind('keydown', {combi:'right', disableInInput: true},function (evt){
        showNextImage();
        return false;
    });
    jQuery(document).unbind('keydown', {combi:'i', disableInInput: true},function (evt){
		showGallery();
        return false;
    });
}

