$(document).ready(function(){
	$("#jim img.clic").css({cursor: 'pointer'}).click(function(){
		$("#gd").attr('src',$(this).attr('src'));
		
	});
});