// JavaScript Document
		$.fx.speeds._default = 1000;
	$(function() {
		$( "#dialog" ).dialog({
			position: [200, 10],
			autoOpen: false,
			show: "fade",
			hide: "fade",
			width: 'auto'
		});
});
		function mostrar_folleto(elemento) {
			$( "#dialog" ).dialog( "open" );
			$( "#dialog" ).html('<img src="folletos/follteto'+elemento+'.jpg" width="850" height="1316" alt="folleto '+elemento+'" />');
			return false;
		};


$(function() {
		$( "#tabs" ).tabs({
			ajaxOptions: {
				error: function( xhr, status, index, anchor ) {
					$( anchor.hash ).html(
						"No se pudo cargar la información. " +
						"Disculpe las molestias." );
				}
			}
		});
	});
