$(document).ready(function() {

    $('#query').focus(function() {
        if (this.value == "City, address, or MLS #")
            this.value = "";
    });
    $("#query").blur(function() {
        if (this.value == "")
            this.value = "City, address, or MLS #"
    });
	
	$('body').css('font-size','10px');
	 
	// Increase Font Size
	$("#text-resizer li.increase a").click(function(){
		var currentFontSize = $('body').css('font-size');
		var currentFontSizeNum = parseFloat(currentFontSize, 10);
		var newFontSize = currentFontSizeNum*1.2;
		$('body').css('font-size', newFontSize);
		return false;
	});
	// Decrease Font Size
	$("#text-resizer li.decrease a").click(function(){
		var currentFontSize = $('body').css('font-size');
		var currentFontSizeNum = parseFloat(currentFontSize, 10);
		var newFontSize = currentFontSizeNum*0.8;
		$('body').css('font-size', newFontSize);
		return false;
	});

});
