/* ---------------------------------------------------- */
/* JQuery - image swapping to B&W						*/
/* ---------------------------------------------------- */
$(document).ready(function() 
{
	$('img#sponsorship1').hover(function() {
		$(this).attr("src","images/machar_small.jpg");
			}, function() {
		$(this).attr("src","images/machar_small_greyscale.jpg");
	});
	$('img#sponsorship2').hover(function() {
		$(this).attr("src","images/michael-riek_small.jpg");
			}, function() {
		$(this).attr("src","images/michael-riek_small_greyscale.jpg");
	});	

});



