// JavaScript Document

$(document).ready(function() {
	if(typeof(autoExpandCareer) != 'undefined'){
		$('.jobListingTitleBar').each(function () {
			var container = $(this).parent();
			$(container).find('.jobListingContent').slideDown('medium');
		});
	}
	else{
		$('.jobListingTitleBar').click(function () {
			var jobTitle = $(this).find('.jobListingTitle').html();
			var container = $(this).parent();
			$(container).find('.jobListingContent').slideToggle('medium', function(){
					if(!$(this).is(':hidden')){
						trackJobExpand(jobTitle);
					}
			   });
		});
	}
});
