// 
//  vacancies.js
//  byron.brycefarrah.com
//  
//  Created by Rob Edwards on 2008-10-05.
//  Copyright 2008 Rob Edwards. All rights reserved.
//

$(document).ready(function() {

    $('#full-search .checklist li label').hover(function() {
        //Over
        $(this).parent().attr('class', 'over');
    }, function() {
        //Out
        $(this).parent().attr('class', '');
    });
});
