// ==UserScript==
// @name          set craigslist location
// @namespace     http://spig.net/
// @description   set location to salt lake city craigslist - modify to your preferred city if you want
// @include       http://*.craigslist.org/*
// @include       http://craigslist.org/*
// @include       http://*.craigslist.com/*
// @include       http://craigslist.com/*
// @date          2006-03-10
// @version       0.1
// @GM_version    0.6.4
// ==/UserScript==

(function() {
    // i don't care about other cities
    if (window.location.href.search(/saltlakecity/i)<0) {
        window.location.href = 'http://saltlakecity.craigslist.org/';
    }
})();
