$(document).ready(function(){
	$('#architects,#green-building,#wooldridge-community,#why-choose,#mix-and-match,#sales,#move-in,#appliances,#finishes,#parking,#warranty,#test').hide();
	$("#main #main-bottom ul li a").click(function() {
		thisHref = $(this).attr("href");
		if ( thisHref.lastIndexOf('#') > -1 ) {
			thisHref = thisHref.substr( thisHref.lastIndexOf('#') )
			$('#wooldridge,#architects,#green-building,#wooldridge-community,#why-choose,#mix-and-match,#sales,#move-in,#appliances,#finishes,#parking,#warranty,#test').hide();
			$(thisHref).show();
			return false;
		}
	});
});