$(document).ready(function() {

	$('[title="Menu"]').click(function(e){
		e.preventDefault();
	}).hover(function(e){
		$(this).css({'color':'#999','cursor':'default'});
	});
	
	var link = $('.right a').attr('href');
	var ima = $('#content p').html();
	if ($('.right a').length){
	$('#content p').replaceWith($('<a href="'+link+'">' + ima + '</a>'));
	}

	$('img').removeAttr('alt').removeAttr('title');

});
