$(document).ready(function() {
		$("#contact_form").validate(); //form validation
		
		$('.select li a').click(function() {   //ajax case study switching
			$('.throb').ajaxStart(function() {
			  $(this).show();
			}).ajaxStop(function() {
			  $(this).hide();
			});
			;//provide loading animation
			$('#case_container').ajaxStart(function() {
			  $(this).empty();
			});
			$('#add_container').ajaxStart(function() {
			  $(this).empty();
			});	
			var the_file=$(this).attr("title");//find the name of the file
			load_file="http://www.mcfaplanning.com/index.php/case/case_2/"+the_file+"/";
			add_file="http://www.mcfaplanning.com/index.php/case/add_images_2/"+the_file+"/";
			$('#case_container').load(load_file);//load it into container
			$('#add_container').load(add_file);//load it into container
			return false;//override default anchor behaviour
		});
});