$(document).ready(function(){
	$("#FullBio").toggle();
	
	$("#Image1, #Img1, #Image2, #Img2").hover(function() {
		$(this).attr("src", "images/carto.gif");
	});
	
	$("#Image1, #Img1, #Image2, #Img2").mouseleave(function() {
		$(this).attr("src", "images/cart.gif");
	});
	
	// Remove apartment from featured address
/*
	$(".featadd").each(function() {
		var addr = $(this).html();
		var newaddr = addr.replace(/Apt.+/, "");
		var newaddr = newaddr.replace(/#.+/, "");
		$(this).replaceWith(newaddr); 
	});
*/
	$("[id*=lblNoFee]").each(function() {
		$(this).html('<img style="" src="http://www.fenwick-keats.com/images/nofee.png" alt="No Fee" />');
	});
	
});

function togglebio(action) {
	$("#ShortBio").toggle();
	$("#FullBio").toggle();
}