function searchprop()
{
var loc = document.frmSearch.prop_location.value;
var bed = document.frmSearch.prop_bedrooms.value;

if (bed=="")
	{
		alert("Please select number of guests");
	}
	else
	{
		location.href="/index.php/properties/search/" + loc + "/" + bed + "/";
	}
}

$(document).ready(function(){
	$("#datefrom").datepicker({ monthNames: ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'], nextText:'>',prevText:'<'});
	$("#dateto").datepicker({ monthNames: ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'], nextText:'>',prevText:'<' });
	$('div.booking p input').example(function() {
			return $(this).attr('title');
		});
	$('div.booking p textarea').example(function() {
			return $(this).attr('title');
		});
		
	$('input#frmbtn').click(function(){
		if ($('#terms').attr('checked')){
			$('form#freeform').submit();
		}else{
			alert('You have to agree to terms and conditions to continue');
		}
	});
});