$(document).ready(function(){
	/*
	swaps images from grayscale to color on hover
	Uses id to define file name
	*/
	$("img.hover").hover(
	function(){
		var currentID = $(this).attr("id");
		var pic = "http://thehomeslicegroup.com/image/staff/"+currentID+"_c.jpg";
		$(this).attr("src", pic);
	}, 
  function () {
		var currentID = $(this).attr("id");
		var pic = "http://thehomeslicegroup.com/image/staff/"+currentID+"_g.jpg";
		$(this).attr("src", pic);
	});
});




 
 



