/* ---------------------------------------------------- */
/* JQuery - image swapping to B&W						*/
/* ---------------------------------------------------- */
$(document).ready(function() 
{
	$('img#sponsorship1').hover(function() {
		$(this).attr("src","images/dhoal_small.jpg");
			}, function() {
		$(this).attr("src","images/dhoal_small_greyscale.jpg");
	});
	$('img#sponsorship2').hover(function() {
		$(this).attr("src","images/george_lony_small.jpg");
			}, function() {
		$(this).attr("src","images/george_lony_small_greyscale.jpg");
	});	

});




