//=====================================================//
var LoadReadyLocal = {};

LoadReady = $.extend(LoadReady, LoadReadyLocal);

$(function() {
    // set the border right of last item to 0 //
    //$('.ourService #list li:nth-child(even)').css({'float': 'right'});
    $('table.generic tr:nth-child(even)').css({'background-color': '#f3f3f3'});
    $('#keyword').focus(function(){
        var value = $(this).val();
        if ($(this).val() == 'keyword search'){
            $(this).val("");
        }
    });

    $('#country_name').val('');
    $('#country_name').change(function(){
        var value = $(this).val();
        if(value != ""){
          $('#contactAddress').load('/index.php?_spAction=address&showHTML=0', {id : value});
          $("input[name='office_id']").val(value);
        }
    });

    $('.desc').jScrollPane({showArrows:true});
    
    $("ul.sf-menu").superfish();

});