// JavaScript Document
$(function() {
/*	$("#calendario").datepicker({altField: '#fecha_evento', altFormat: 'yy-mm-dd'});*/
	$('#informacion').pager('p', {
	    navId: 'nav2',
		height: '15em'
	});
	$("#tab_multimedia").tabs({ selected: 0, fx: { opacity: 'toggle' } });	
});

//	Ver Evento
$(function(){
	$('#form_ver_evento').dialog({maxWidth:800,width:800,height:600,maxHeight:600,modal: true,bgiframe: true,autoOpen: false, show: 'slide', hide: 'slide', buttons: {'Cancelar': function() {
		$(this).dialog('close');}},
		close: function(){setTimeout(function(){window.location.reload();},1);}
	});
});


$(function(){
	$('#qweqeqwep').click(function(){
		$('#form_ver_evento').dialog('open');
	});
});

