/*
 tB 2010
 */



$(document).ready(function() {
    $("#langBox").selectBox('settings', {
        'menuTransition': 'default',
        'menuSpeed': 0
    });
    $("#langBox").selectBox().focus(function() {
    });


    $("#langBox").selectBox().change(function() {
        var strlang = 'en';
        if ($(this).val() == '0')
        { strlang = 'en'; }
        if ($(this).val() == '1')
        { strlang = 'es'; }
        $.cookie('lang', strlang, { path: '/', domain: '', secure: false });
        window.location.href = window.location.href;
    });

    // Set the selected text on the span and also set the background color for the selected language
    if ($.cookie('lang') == 'es') {
        $('.googleerror').css('color', 'red');
        $("#langBox").selectBox('options', ['English', 'Spanish']);
        $("#langBox").selectBox('value', '1');
    } else if ($.cookie('lang') == 'en') {
        $('.googleerror').hide();
        $("#langBox").selectBox('options', ['English', 'Spanish']);
        $("#langBox").selectBox('value', '0');

    } else {
        $('.googleerror').hide();
        $("#langBox").selectBox('options', ['English', 'Spanish']);
        $("#langBox").selectBox('value', '0');

    };


});

