$(document).ready(function() {
	$('.listbox').hover(function() {$(this).addClass("hover");}, function() {$(this).removeClass("hover");});
	$('.listbox').click(function(event) {
		if (event.target.className == "listurl") {
			return true;
		}
		url = $(this).attr("id");
		redirectto(url);
		return false;
	});


});

var redirectto = function(url) {
	location.href ="http://www.thespanishpantry.com/" + url;
}
