function auto_fill(id, v){
	
	if( ($(id).val()) && ($(id).val()!=v) ) return;
	
	$(id).css({ color: '#777777'}).attr({ value: v }).focus(function(){
		if($(this).val()==v){
			$(this).val('').css({ color: '#000000' });
		}
	}).blur(function(){
		if($(this).val()==''){
			$(this).css({ color: '#777777' }).val(v);
		}
	});
	
	return;
	
}



$(document).ready(function(){
 
	// Make rel="external" links open in a new tab
	$('a[rel=external]').each(function(){
		this.target = '_blank';
	});	
	
	// Livesearch stuff
	auto_fill($('#keywords'), 'Keyword e.g. street / town / postcode');
	
	
});
