$(document).ready(function () {
var place = location.href;
var city = place.split("/");

$.cookie('city', city[3], { expires: 7 });

   /// DON'T USE AN ABSOLUTE PATH TO AVOID "PERMISSION DENIED" ERRORS.
   $.get('/gallery/template/listings/c/City/Search/Raleigh.html', 
         function() { 
     //         alert('Im done setting the Wilmington Cookie...'); 
         } 
   );

});

function city(value) {
var place = "City-" + value + ".html";

$.cookie('city', place, { expires: 7 });
if(value == "Greensboro") {
 location.href = "http://www.cheaptabsonline.com/City-Greensboro.html";
} else if(value == "Raleigh") {
 location.href = "http://www.cheaptabsonline.com/City-Raleigh.html";
} else if(value == "Wilmington") {
 location.href = "http://www.cheaptabsonline.com/City-Wilmington.html";
} else if (value == "Orlando") {
 location.href = "http://www.cheaptabsonline.com/City-Orlando.html";
}
} 
