var base_url = 'http://www.powiat.cieszyn.pl/';

jQuery(document).ready(function(){
      
   jQuery('#helpmail_button').click(function(){
    if(jQuery('#helpmail_content').css('display') == 'block'){
        jQuery('#helpmail_content').hide();
        jQuery(this).removeClass('helpmail_open').removeClass('helpmail_close').addClass('helpmail_open');
    }else{
        jQuery('#helpmail_content').show();
        jQuery(this).removeClass('helpmail_open').removeClass('helpmail_close').addClass('helpmail_close');
    }
    return false;
   });
   
   jQuery('#helpmail_upper_bar').click(function(){
      if(jQuery('#helpmail_content').css('display') == 'block'){
        jQuery('#helpmail_content').hide();
        jQuery('#helpmail_button').removeClass('helpmail_open').removeClass('helpmail_close').addClass('helpmail_open');
    }else{
        jQuery('#helpmail_content').show();
        jQuery('#helpmail_button').removeClass('helpmail_open').removeClass('helpmail_close').addClass('helpmail_close');
    }
    return false;
   });
   
   jQuery('#helpmail_name').focus(function(){
    if(jQuery(this).val() == 'Imię i nazwisko...'){
        jQuery(this).val('');
    }
   });
   
   jQuery('#helpmail_name').blur(function(){
    if(jQuery(this).val() == ''){
        jQuery(this).val('Imię i nazwisko...');
    }
   });
   
      jQuery('#helpmail_email').focus(function(){
    if(jQuery(this).val() == 'Adres e-mail...'){
        jQuery(this).val('');
    }
   });
   
   jQuery('#helpmail_email').blur(function(){
    if(jQuery(this).val() == ''){
        jQuery(this).val('Adres e-mail...');
    }
   });
   
      jQuery('#helpmail_phone').focus(function(){
    if(jQuery(this).val() == 'Telefon...'){
        jQuery(this).val('');
    }
   });
   
   jQuery('#helpmail_phone').blur(function(){
    if(jQuery(this).val() == ''){
        jQuery(this).val('Telefon...');
    }
   });
   
      jQuery('#helpmail_message').focus(function(){
    if(jQuery(this).val() == 'Wpisz treść zapytania...'){
        jQuery(this).val('');
    }
   });
   
   jQuery('#helpmail_message').blur(function(){
    if(jQuery(this).val() == ''){
        jQuery(this).val('Wpisz treść zapytania...');
    }
   });
   
   jQuery('#helpmail_form').submit(function(){ 
        jQuery('#helpmail_ajax').show(250);
        jQuery('#helpmail_close').hide();
        jQuery.ajax({
           type: 'post',
           url: base_url+'helpmail/helpmail_ajax.php',
           data: jQuery('#helpmail_form').serialize(),
           dataType: 'json',
           success: function(j){
                if(!j.ok){
                    jQuery('#helpmail_loader').hide(); 
                    jQuery('#helpmail_response ul').html(j.msg);
                    jQuery('#helpmail_response ul').show();    
                    jQuery('#helpmail_close').show();
                }else{
                    jQuery('#helpmail_loader').hide();
                    jQuery('#helpmail_response ul').html(j.msg);
                    jQuery('#helpmail_close').hide();
                }
           } 
        });        
        return false;
   });
    
    
    jQuery('#helpmail_close').click(function(){
       jQuery('#helpmail_ajax').hide(250);
       jQuery('#helpmail_response ul').html('');
       jQuery('#helpmail_close').hide();
       return false;
    });
});
