//Written by the Evol Doctor
jQuery.hash = function(value) {
 if(typeof value != 'undefined') {
  window.location.hash=value;
  return value;
 }
 else {
  return window.location.hash;
 }
};
