﻿
$(document).ready(function() {

    $('.rollover img').hover(function() {
        var src = $(this).attr('src');
        src = src.replace(/_off/g,"_over");  
        $(this).attr('src', src); 
    }, function() {
        var src = $(this).attr('src');
        src = src.replace(/_over/g,"_off"); 
        $(this).attr('src', src); 
    
    });
});

$(document).ready(function() 
    { 
        $("#positionsListings").tablesorter(); 
    } 
); 