$(document).ready(function(){
	$('div.IDX-showcaseAddress').each(function(index) {
		var boo = $(this).text().toLowerCase().replace( /\b./g, function(a){ return a.toUpperCase(); } );
		$(this).text(boo);
	});
	$('span#IDX-priceLabel').each(function(index) {
		var booo = $(this).text().replace("Price: ", "");
		$(this).text(booo);
	});
	$('div.IDX-showcaseListingID').each(function(index) {
		$(this).hide().css("font-weight", "600");
	});
});

function setCommunity(community) {
	//alert(community);
	document.cookie='communityCookie=' + community; 
	document.location.href = '/featured-communities';
}


