$(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();});

	$('.tabs a').click(function(){
		$(this).parent().siblings().attr('class','');
		$(this).parent().addClass('active');
		_id = $(this).attr('href');
		$(_id).siblings('.tab-body').hide();
		$(_id).show();
		
		return false;
	});
	
});
