$(document).ready(function() {
						   
	$('input.field').focus(function() {
        if(this.title==this.value) {
            this.value = '';    		
        }
    }).blur(function(){
        if(this.value=='') {        	
            this.value = this.title;
        }
    });
	
	$('form.search_form').submit(function() {
		if ((this.SEARCH.value == this.SEARCH.title) && (this.LOCATION.value == '')) {
			alert('You must fill in atleast one search field');			
			return false;
		}
		
		return true;
	});
	
	$('.results li').mouseover(function() {
		this.style.backgroundColor = '#e7f4fc';									
	});
	$('.results li.package3').mouseover(function() {
		this.style.backgroundColor = '#fff9cd';									
	});
	$('.results li').mouseout(function() {
		this.style.backgroundColor = '#ffffff';									
	});	
	
});


function runOnLoad() {
	if (document.getElementById('map_canvas')) {
		googleMapInitialize();
	}	
}