/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
jQuery(".careers_open").live('click', function(){
    jQuery("#careers_header").show();
    jQuery("#careers_container").show();
    jQuery("#careers_pagination").show();
});

jQuery(".careers_close").live('click', function(){
    jQuery("#careers_header").hide();
    jQuery("#careers_container").hide();
    jQuery("#careers_pagination").hide();
});
