<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
======================================
[ Facebook Chat ]
======================================
*/

jQuery('.facebook-support').hide();

jQuery('.support-fixed h3').click(function(e) {     
    console.log('your h3 click');
    e.stopPropagation();
    jQuery('.facebook-support').slideToggle();
});

jQuery('.facebook-support').click(function(e) {
    e.stopPropagation();
});

jQuery(document).click(function() {
    jQuery('.facebook-support').slideUp();
});

jQuery( function() {
	jQuery( ".datepicker" ).datepicker();
} );


jQuery(document).ready(function(){

    jQuery('a.btn-support').click(function(e){
      e.stopPropagation();
      jQuery('.support-content').slideToggle();
    });

    jQuery('.support-content').click(function(e){
      e.stopPropagation();
    });

    jQuery(document).click(function(){
	   jQuery('.support-content').slideUp();
    });

    /* Custom Tab Banner home */
    jQuery('#myTab1 li a:not(:first)').addClass('inactive');
    jQuery('.search-form').hide();
    jQuery('.search-form:first').show();

    jQuery('#myTab1 li a').click(function(){

        var t = jQuery(this).attr('id'); 

        if(jQuery(this).hasClass('inactive')){ //this is the start of our condition 
          jQuery('#myTab1 li a').addClass('inactive');           
          jQuery(this).removeClass('inactive');
          
          jQuery('.search-form').hide();
          jQuery('#'+ t + '-form').fadeIn('slow');
       }
    });

});</pre></body></html>