/*$(document).ready(function(){

//Slideshow for homes to buy
$('.slideshow').cycle({ 
    fx:     'fade', 
    timeout: 5000, 
    delay:  40    
});


	$(".splash_links").hide();	
	// Product Expander Menu
	$(".splashbox").hover(
		function() {			
				$(this).find('.splash_links').fadeIn();
		},	
	    function() {
				$(this).find('.splash_links').fadeOut('slow');
    	}    	
	);
	
	try {
		init_property_lookup();//flagship homes property module
		Standardiser.matchH(document.getElementById('middlecol'),document.getElementById('leftcol'));
		}
	catch (e) {}	
});	*/

function cleanOnFocus(field,defaultText){
	try{
		if(!field.tagName == "INPUT" || !field.type=="text" || !field.value)
			return false;
		if(field.value == defaultText)
			field.value='';
	}catch(e){
		return false;
	}
}

function resetOnLostFocus(field,defaultText){
	try{
		if(!field.tagName == "INPUT" || !field.type=="text")
			return false;
		if(!field.value)
			field.value=defaultText;
	}catch(e){
		return false;
	}
}




