﻿$(document).ready(function () {

    var rootUrl = $("#rootUrl").val();
    var defaultSearchText = "";

    // Set the cursor to automatically focus on the main search box
    $("#tbSearchLocation").focus();

    // Set the default text for the search box
    $("#tbSearchLocation").val(defaultSearchText);

    // If the default text is in the search box, then clear it on focus
    $("#tbSearchLocation").focus(function () {
        if ($("#tbSearchLocation").val() == defaultSearchText)
            $("#tbSearchLocation").val("");
    });

    // If the search box contains the default text or is empty when the search button is clicked, then prevent form submission
    $("#btnSearch").click(function (event) {
        if ($("#tbSearchLocation").val() == defaultSearchText || $("#tbSearchLocation").val() == "")
            event.preventDefault();
    });

    // Embed video
    var videoId = "pnX0kpTd40g";
    var params = { allowScriptAccess: "always" };
    var atts = { id: "groupvideoplayer" };
    swfobject.embedSWF("http://www.youtube.com/v/" + videoId + "?enablejsapi=1&playerapiid=" + atts.id, "group-video", "300", "220", "8", null, null, params, atts);

}); 
