jQuery(document).ready(function() {
         
    jQuery('#btn').trigger('click');

    jQuery('.item122').click(function(){
             
                jQuery('#chat').trigger('click');
          
    });

    jQuery("#sub").click(function(){

            var text = jQuery('#shippingAddress').html().replace(/^\s*|\s*$/g,"");
            var textA = jQuery('#txtArea').val();


            if (textA == "" && (text == "Escriba la direcci\xf3n exacta de env\xedo (no se aceptan Apartados Postales)." || text == "Please Write your shipping address in Costa Rica (no PO Box numbers allowed)."))
       {
           jQuery('#shippingAddress').css('background-color','red');   
           jQuery('#shippingAddress').show('fast');
           return false;
           
       }
       else
       {
            
            return( submit_order( this.form ) );
       } 
    });
    
});
