/************************************************************************ 
JobChi Main
************************************************************************/

$(document).ready(function() { 
	

}); // End Doc Ready


/************************************************************************ 
HIghlight Current Page in header links
************************************************************************/
$(function(){

    var pathname = (window.location.pathname);

    $('#header a').each(function() {
    if ($(this).attr('href') == pathname)
    {
        $(this).addClass('current');
    }
    });
});

var App = {

	
} // End App
