$(document).ready(function() {

	///////////////////
	//    GENERIC    //
	///////////////////

	$('.properties-box:odd').addClass('odd');

	$('#marbella-O').hover(function(){
		$(this).attr('src','/_myimages/map/marbella-west-on.gif');
	},
	function(){
		$(this).attr('src','/_myimages/map/marbella-west-off.gif');
	});
	$('#marbella').hover(function(){
		$(this).attr('src','/_myimages/map/marbella-on.gif');
	},
	function(){
		$(this).attr('src','/_myimages/map/marbella-off.gif');
	});
	$('#marbella-E').hover(function(){
		$(this).attr('src','/_myimages/map/marbella-east-on.gif');
	},
	function(){
		$(this).attr('src','/_myimages/map/marbella-east-off.gif');
	});

});



function resetform(name) {

	$('#subarea').val('');
	$('#type').val('');
	$('#beds').val('');
	$('#from').val('');
	$('#to').val('');
	$('#ref').val('');
	document[name].submit();

}
