function clearText(thefield) {
  if (thefield.defaultValue==thefield.value) { thefield.value = "" }
} 
function replaceText(thefield) {
  if (thefield.value=="") { thefield.value = thefield.defaultValue }
}

// jQuery

$(document).ready(function(){
	// insert code here
});

function swap(id){
	
	//$('#lg-uc-img').animate( { background: "transparent url('http://www.avenurealtygroup.com/images/mls/"+id+"-250.jpg') no-repeat top left" }, { duration:1500 }  ); 
	
	$('#lg-uc-img').css("background","transparent url('http://www.avenurealtygroup.com/images/mls/"+id+"-250.jpg') no-repeat top left");
	
}


