$(document).ready(function(){
	$('.hover img').hover(function(){
		var src = $(this).attr('src');
		$(this).attr('src',src.replace(/(\.\w+)$/,'_o$1'));
	},function(){
		var src = $(this).attr('src');
		$(this).attr('src',src.replace(/_o(\.\w+)$/,'$1'));
	});
	$('.nomarginright>div:last').css('margin-right','0');
	$('#alpha2').click(function(){
		window.open($('#alpha222 a').attr('href'),'_blank');
	});
	$('#alpha222 a').click(function(e){
		e.stopPropagation();
	});
});

