﻿// JScript File
(function($) {

$(document).ready(function() {
    if ($("#hidBCKGImg").attr('value')!=undefined && $("#hidBCKGImg").attr('value')!='')
    {
        $(".section_column1").css("background","url("+$("#hidBCKGImg").attr('value')+")");
    }
     
    var jobCategory = $(".section_column1 p#highlight");
    if(jQuery.trim(jobCategory.text()) == "")
    {
        jobCategory.remove();
    }
    
    $("input.apply").remove();

});


function JobShortlisted(obj)
    {
        if (obj==undefined || obj=='')
        {
//            window.location = 'JobApplicationConfirmation.aspx';
           $("#lishortlist").attr('style',"display:none");
                
        }
        else
        {
            $("#joboptionserror").html(obj);
        }
    }
    
      })(jQuery);
