﻿$(document).ready(function () {
    $('#page_nav').find('input[type^="hidden"]').val(window.location);
    $('li[id^="nav_"]').hoverIntent({
        over: function () {
            $(this).css('background-position', 'left bottom');
            $(this).css('background-color', '#72AC21');
            $(this).addClass('nav_current');
            $(this).find('ul.sub_nav').stop().removeAttr('style').slideDown('fast');
        },
        timeout: 10,
        interval: 10,
        out: function () {
            $(this).removeAttr('style');
            $(this).removeClass('nav_current');
            $(this).find('ul.sub_nav').stop().slideUp('fast', function () { $(this).removeAttr('style'); });
        }
    });

    //Search Box
    var sq = $('.input_Query').val();
    if (sq == '') {
        $('.input_Query').val('search...');
    }
    $('.input_Query').blur(function () {
        if ($(this).val() == '') {
            $(this).val('search...')
        }
    });
    $('.input_Query').focus(function () {
        if ($(this).val() == 'search...') {
            $(this).val('')
        }
    });

    $('.btn_Search').click(function () {
        if (($('.input_Query').val() == 'search...') || ($('.input_Query').val() == '')) {
            return false;
        }
    });

    //Keep Alive
    $('body').append('<iframe src="http://www.gurango.com/KeepAlive.aspx" style="border: none; width: 1px; height: 1px; position: absolute;"></iframe>');
});
