function toggleRegions(ref){
	$('#regions').toggleClass('hidden');
	if(!$('#regions').hasClass('hidden')){
		$(document).bind('mouseup', toggleRegions);
		$('#currentregion').bind('mouseup',function() { return false; });
		$('#regions')[0].style.left = $(ref).offset().left + 'px';
		$('#regions')[0].style.top = $(ref).offset().top + ref.offsetHeight + 'px';
	} else {
		$(document).unbind('mouseup', toggleRegions);
	}
}


$(document).ready(function(){
	$("a[rel='pop-up']").click(function () {
      	var caracteristicas = "height=700,width=800,scrollTo,resizable=1,scrollbars=1,location=0";
      	nueva=window.open(this.href, 'Popup', caracteristicas);
      	return false;
	});
})