//This file is meant to contain all javascript so that it isn't stuck inline with the code. Put new javascript within the document.ready function - Austin
$(document).ready(function()
{
	//------------------------------------------------------------------------//
	//Show a modal if the candidate chooses they have less than 1 year of experience when they are signing up
	
	$('#experience').change(function()
	{
		if($('#experience option:selected').val() == 2)
		{
			$("#msc_offer").modal({overlayClose:true});
			$("#msc_offer").show();
		}
	});
	
	
	//------------------------------------------------------------------------//
	//Find candidate toggle from Simple/Advanced search form
	
	$('.hiring_search_toggle').click(function()
	{
		$('#hiring_find_candidate_advanced').toggle();	
		$('#simple_search').toggle();	
	});
	
	//------------------------------------------------------------------------//
	
	
});
