var clicked = false;

$(function() {
	if ($("#query").val() == "") {
		$("#query").attr("value", "ex: 4 bedroom, under $500, pets").addClass("disabled");
	}
	if ($("#query").val() != "ex: 4 bedroom, under $500, pets") {
		clicked = true;
	}
	$("#query").click(function() {
		$(this).removeClass("disabled").addClass("enabled");
		if (!clicked) {
			$("#query").attr("value", "");
			clicked = true;
		}
	});
	$("#search_form").submit(function() {
		if (!clicked) {
			$("#query").attr("value", "");
			clicked = true;
		}
	});
    $("#query").tooltip({ 
        tip: '#tooltip',
		position: 'top, center',
		events: {
			input: "mouseover,mouseout"
		},
		effect: 'slide',
		offset: [3, 0]
    }).dynamic( { 
        bottom: { 
            direction: 'down', 
            bounce: true 
        } 
    });
});
