﻿



$(document).ready(function () {

    //Get a reference to the link on the page 
    // with an id of "mylink" 

    //Set code to run when the link is clicked 
    // by assigning a function to "onclick" 
    $('.applyLink').click(function() {
  
        // get the value of the job id
        var appId = $('#jobId').val();

         window.location.href = "http://www.cv-library.co.uk/cgi-bin/view-job.cgi?jobref=" + appId +"&s=100638";
        return false;
    });

    $('.cvLink').click(function() {

        // get the value of the job id

        window.location.href = "http://www.cv-library.co.uk/aff/100638";
        return false;
    });

});
