$(document).ready(function() {
	
	$("#tabBox-1 span.tab-off").click(function() {
		/*
		$("#tabBox-1").hide();
		$("#tabBox-2").fadeIn(500, function () {
			$("#tabBox-2").show();
		});*/
		//window.location.href = '#Listings';
		$('#tabBox-1').css({ overflow:"hidden", height:"1px", width:"1px", padding:"0px" });
		$('#tabBox-2').css({ overflow:"visible", height:"auto", width:"100%", padding:"5px" });
		if ($.browser.msie) {
			$('#tabBox-2 .tabHolder').css({ top:"-37px" });
		}
	});
	$("#tabBox-2 span.tab-off").click(function() {
		/*
		$("#tabBox-2").hide();
		$("#tabBox-1").fadeIn(500, function () {
			$("#tabBox-1").show();
		});*/
		//window.location.href = '#Overview';
		$('#tabBox-1').css({ overflow:"visible", height:"auto", width:"100%", padding:"5px" });
		$('#tabBox-2').css({ overflow:"hidden", height:"1px", width:"1px", padding:"0px" });
	});
	$("#tabBox-1 .seeListings span").click(function() {
		/*
		$("#tabBox-1").hide();
		$("#tabBox-2").fadeIn(500, function () {
			$("#tabBox-2").show();
		});*/
		//window.location.href = '#Listings';
		$('#tabBox-1').css({ overflow:"hidden", height:"1px", width:"1px", padding:"0px" });
		$('#tabBox-2').css({ overflow:"visible", height:"auto", width:"100%", padding:"5px" });
		if ($.browser.msie) {
			$('#tabBox-2 .tabHolder').css({ top:"-37px" });
		}
	});
/*
	if (showResults > 0 && window.location.hash != '#Listings')
		window.location.href = '#Listings';
		
	if (showResults > 0 || window.location.hash == '#Listings') {
		$('#tabBox-1').css({ overflow:"hidden", height:"1px", width:"1px", padding:"0px" });
		$('#tabBox-2').css({ overflow:"visible", height:"auto", width:"100%", padding:"5px" });
	}
*/	
	
	
});
