/* ---------------------------------------------------- */
/* JQuery - image swapping to B&W						*/
/* ---------------------------------------------------- */
$(document).ready(function() 
{
	$('img#helpedimage1').hover(function() {
		$(this).attr("src","images/damai-dak.jpg");
			}, function() {
		$(this).attr("src","images/damai-dak_greyscale.jpg");
	});
	$('img#helpedimage2').hover(function() {
		$(this).attr("src","images/john.jpg");
			}, function() {
		$(this).attr("src","images/john_greyscale.jpg");	
	});
});



