/**********************************************************************************
* MateVarga.com                                                                   *
* Copyright (C) 2006-2009 By M.D. Varga                                           *
***********************************************************************************
* FILENAME:     template.js
* BY:           Varga, Mate
*
* DESCRIPTION: 
*          MDV : Template Bootstrap JS
**********************************************************************************/


// Initialization =================================================================
$(document).ready(PageReady);
// ================================================================================


// Callbacks ======================================================================
// --------------------------------------------------------------------------------
// Executes when the page is ready.
function PageReady()
{
    // Initialize Drop-Down Menu
    $("ul.sf-menu").superfish();
    
    // Initialize Search Box Text
    $("#s").example("Search...");
}
// --------------------------------------------------------------------------------
// ================================================================================


// Utility ========================================================================
// --------------------------------------------------------------------------------
function AddExampleText(id, text)
{
    $(document).ready(function()
    {
        $(id).example(text);
    });
}
// --------------------------------------------------------------------------------
// ================================================================================
