$(function() {
	var	currentMenuBar = "menu_bar_town";
	var currentContentSelector = "#search_town";
	$("#tabs li").hover(
		function () {
			if ($(this).attr("id") != currentMenuBar) {
				$(this).addClass("hover");
			}
		},
		function () {
			$(this).removeClass("hover");
		}
	);
	$("#tabs li").click(function () {
		SelectTab($(this));
		HandleNewContent($(this));
	});
	$("#search_button").live("click" , function () {
		$(currentContentSelector).submit();
	});
	
	function SelectTab($tab) {
		$(".active").removeClass("active");
		$tab.removeClass("hover");
		$tab.addClass("active");
		currentMenuBar = $tab.attr("id");
	}
	
	function HandleNewContent($tab) {
		tabId = $tab.attr("id");
		newContentSelector = "#search" + tabId.substring(tabId.lastIndexOf("_"));
		$(currentContentSelector).fadeOut("50", function () {
			$(newContentSelector).fadeIn("50");
		});
		currentContentSelector = newContentSelector;
	}
});

