﻿$(document).ready(function () {
    //pop up events for Disclaimer and Regulation pages
    $('a.popup').popupWindow({ scrollbars: 1, left: 100, top: 100 });


    //event for search box
    $('input.searchInput').click(function (ev) {
        if ($(this).val() == 'Search') {
            $(this).val('');
        }
    });

    //event for search box Enter key pressed
    $('input.searchInput').keypress(function (event) {
        if (event.keyCode == '13') {
            event.preventDefault();
            $('input.searchButton').click();
        }
    });

    //event for search button
    $('input.searchButton').click(function (ev) {
        ev.preventDefault();
        var text = $('input.searchInput').val();

        if (text != '') {
            document.location.href = '/search?q=' + text;
        }
    }); //end click
});
