$(document).ready(function() {
	var currentJob = '#web-developer';
	showJob = function(jobID){
		$(currentJob).hide();
		currentJob = jobID;
		$(currentJob).show();
	}
	
	imageSwap = function(imgID,newPath){
		$(imgID).attr("src",newPath);
	}
});
