$(function() {
	$(".image").click(function() {
		var majesty = $(this).attr("rel");
		$('#image').hide();
		$('#image').fadeIn('slow');
		$('#image').html('<img src="' + majesty + '"/>');
		return false;
	});
});
