/*
# Copyright (C) 2009 PixBuffer Software Inc.
# http://pixbuffer.com
# All rights reserved
#
*/

/*
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    JavaScript code for the main page

    Documentation of code should follow the standards defined by:
    http://jsdoc.sourceforge.net/
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/

function setup_content_area() {
    /*
    * Setup elements for the main page content area
    */
    var default_searchbar_text = "Search...";

    $("#searchbar").focus(function () {
        var text_value = $(this).val();
        if (text_value == default_searchbar_text) {
            $(this).val("");
        }
    });

    $("#searchbar").blur(function () {
        var text_value = $(this).val();
        if (!text_value) {
            $(this).val(default_searchbar_text);
        }
    });
}


