//$(document).ready(registerPromociones);
function registerPromociones(){
	if( !$.cookie('mostrandoPromocion')){
		var url = host+"Response.loadpromocion";
		$.get(url, function(data){
			$(data).modal({
				close: false,
				position: ["15%",],
				overlayId: 'contact-overlay',
				containerId: 'contact-container'
				
			});
		$.cookie('mostrandoPromocion',true, { expires: 1 });
		
		});
	}
	$.cookie('mostrandoPromocion',null, { expires: -1 });
}
