$(document)
  .ready(function() {
      $('.job-dialog').dialog({
        autoOpen: false,
        width: 600,
        height:400,
      });
      $('.a-job-detail').click(function(){
        var id = this.id.replace("a-job-detail-","");
        $('#job-detail-'+id).dialog('open');
          return false;        
      });
     window.setTimeout(function() {
       $('.skype_pnh_container').html('');
       $('.skype_pnh_print_container').removeClass('skype_pnh_print_container');
      }, 800);
 
  });







