$(document).ready(function(){

	$('a[rel=popupShow]').click(function(e){
		$('.popup.showed').removeClass('showed');
		var anchor = $(this).attr('href');
		$(anchor).addClass('showed');
		e.stopPropagation();
		return false;
	});

	$('body').click(function(){
		$('.popup.showed').removeClass('showed');
	});

	$('.popup').click(function(e){e.stopPropagation();});
	
});
