$(function() {
		$( "#dialog:ui-dialog" ).dialog( "destroy" );
	
		$( "#dialog-modal" ).dialog({
			autoOpen: false,
			width: 600,
			height: 340,
			modal: true,
			draggable: false
		});

		$( ".open-dialog" ).click(function() {

			var id = $(this).attr("id");
			var title="Error!";
			var url="dialog_contacta.php";

			if (id=="about") title="Sobre Nosotros";
			if (id=="donde") title="Donde Estamos";
			if (id=="privacidad") title="Privacidad";
			if (id=="envios") title="Envios";
			if (id=="contacta") {

				title="Contacta";
				url="contact_us.php";
			}
			
			if (id=="oferta") title="Ofertas";

			$.ajax({
 			url: url,
			cache: false,
  			success: function(data) {

				$('#dialog-modal').html(data);
				$("#dialog-modal").dialog("option" , "title" , title); 
				$("#dialog-modal").dialog("open"); 

    				
  			},
 			error: function(){
        			alert('Error loading XML document');
    			}
			});

			return false;
		});

		
		

});

