// JavaScript Document

var url_prestige; 

$(document).ready(function() {

	/*funciones*/	
	
	/*prestige*/
	/*var j = jQuery.noConflict();
	j(document).ready(function(){*/
		if ($("#disponibilidad").length > 0) {
				$.fn.createDialog.defaults = {
				progress: true,
				center: true,
				opacity: 0.7,
				bg: '#000'
			}			

			$("#disponibilidad").createDialog({

				addr: 'web/prestige_iframe.html',
				bg: '#000000'
			});

		}

		if ($("#disponibilidad1").length > 0) {
				$.fn.createDialog.defaults = {
				progress: true,
				center: true,
				opacity: 0.7,
				bg: '#000'
			}

			$("#disponibilidad1").createDialog({

				addr: '../web/prestige_iframe.html',
				bg: '#000000'
			});
		}

		if ($("#disponibilidad2").length > 0) {
				$.fn.createDialog.defaults = {
				progress: true,
				center: true,
				opacity: 0.7,
				bg: '#000'
			}

			$("#disponibilidad2").createDialog({

				addr: '../../../web/prestige_iframe.html',
				bg: '#000000'
			});
		}
		
		if ($("#consultacancelacion").length > 0) {
				$.fn.createDialog.defaults = {
				progress: true,
				center: true,
				opacity: 0.7,
				bg: '#000'
			}			

			$("#consultacancelacion").createDialog({

				addr: '../web/prestige_iframe.html',
				bg: '#000000'
			});
		}		

	//});
	
});