window.addEvent('domready',function(){
	var myImages = Asset.images(['http://www.tvazteca.com/plantillas/maquetacion/notifications/gdl2011/titlebg.png', 'http://www.tvazteca.com/plantillas/maquetacion/notifications/gdl2011/medals.png', 'http://www.tvazteca.com/plantillas/maquetacion/notifications/gdl2011/close.png']);
	var audioBox = new Element('div',{'style':'position:absolute;z-index:-1;bottom:-500px;left:-500px;'});
	var audioDing = new Element('audio',{'id':'jp-ding','preload':'auto'});
	var audioOgg = new Element('source',{'src':'http://www.tvazteca.com/plantillas/maquetacion/notifications/gdl2011/ding.ogg','type':'audio/ogg'});
	var audioMp3 = new Element('source',{'src':'http://www.tvazteca.com/plantillas/maquetacion/notifications/gdl2011/ding.mp3','type':'audio/mp3'});
	var audioWav = new Element('source',{'src':'http://www.tvazteca.com/plantillas/maquetacion/notifications/gdl2011/ding.ogg','type':'audio/wav'});
	audioOgg.inject(audioDing);audioMp3.inject(audioDing);audioWav.inject(audioDing);audioDing.inject(audioBox);
	audioBox.fade('hide');
	audioBox.inject($(document.body),'bottom');
	if(Cookie.read('jpMedal') == null)Cookie.write('jpMedal','0');
	fetchNotification.delay(8000);
});
//GLOBAL VARS
var notifTimer;
//GLOBAL FUNCTIONS
function fetchNotification(){
	//var jsonRequest = new Request.JSON({url: 'notifications.php',
	  var jsonRequest = new Request.JSON({url: 'http://www.aztecadeportes.com/centraljsons/json/jsonnotificaciones/',
	//var jsonRequest = new Request.JSON({url: 'http://deportes.bere/centraljsons/json/jsonnotificaciones/',
		onSuccess: function(json,string){
		    if(json){
		    	if(JSON.encode(json.items).length > 2){
		    		if(((json.items).id).toInt() > (Cookie.read('jpMedal')).toInt()) createNotification(json.items);
		    	}
				if(json.alive == 'true')fetchNotification.delay((json.timeout).toInt());
		    }
		}
	}).post({'idNotif': Cookie.read('jpMedal')});
}
function createNotification(json){
	var opb;
	var opbBg;
	if(json.type == 'o'){
		opb = 'oro'
		opbBg = '0px 0px';
	}else if(json.type == 'p'){
		opb = 'plata'
		opbBg = '0px -129px';
	}else if(json.type == 'b'){
		opb = 'bronce';
		opbBg = '0px -258px';
	}
	if($('notificationJpBox')){
		clearTimeout(notifTimer);
		$('notificationJpBox').destroy();
	}
	var notifBox = new Element('div',{'id':'notificationJpBox','style':'width:300px;height:160px;position:fixed;bottom:15px;right:15px;z-index:2147483647;'});
	var notif = new Element('div',{'id':'notificationJp','style':'width:300px;height:160px;float:left;position:relative;top:170px;background-color:#FFFFFF;-moz-box-shadow:0px 0px 10px rgba(0,0,0,0.8);-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.8);box-shadow:0px 0px 10px rgba(0,0,0,0.8);'});
	var notifBar = new Element('div',{'style':'width:100%;height:25px;float:left;text-align:center;background:url(http://www.tvazteca.com/plantillas/maquetacion/notifications/gdl2011/titlebg.png);background-color:#d0005d;'});
	var notiTit = new Element('p',{'style':'font-size:12px;font-weight:bold;line-height:25px;display:inline;color:#FFFFFF;','html':'XVI JUEGOS PANAMERICANOS'});
	var notiClose = new Element('a',{'href':'javascript:closeNotification();','style':'width:25px;height:25px;float:right;'});
	var notiCloseImg = new Element('img',{'src':'http://www.tvazteca.com/plantillas/maquetacion/notifications/gdl2011/close.png'});
	notiCloseImg.inject(notiClose);notiTit.inject(notifBar);notiClose.inject(notifBar);notifBar.inject(notif);
	var notiBody = new Element('div',{'style':'width:286px;height:129px;float:left;border-left:7px solid #d0005d;border-bottom:7px solid #d0005d;border-right:7px solid #d0005d;'});
	var notiMedal = new Element('a',{'href':json.href,'style':'width:105px;height:129px;float:left;border-right:1px solid #dddddd;background:url(http://www.tvazteca.com/plantillas/maquetacion/notifications/gdl2011/medals.png);background-position:' + opbBg + ';'});
	var notiInfo = new Element('div',{'style':'width:180px;height:106px;float:left;overflow:hidden;'});
	var notiSport = new Element('p',{'style':'font-size:14px;font-weight:bold;float:left;padding:10px 10px 4px 10px;text-transform:uppercase;color:#e1126e;','html':json.title});
	var notiLink = new Element('a',{'href':json.href,'style':'font-size:13px;font-weight:bold;float:left;padding:0px 10px 0px 10px;color:#777777;','html':'Medalla de&nbsp;' + opb + '&nbsp;para los mexicanos'});
	var notiFoot = new Element('div',{'style':'width:180px;height:23px;float:left;'});
	var notiMore = new Element('a',{'href':json.href,'style':'font-size:10px;line-height:10px;float:right;font-weight:normal;color:#FFFFFF;letter-spacing:1px;margin-right:10px;padding:2px 5px 2px 5px;background-color:#e1126e;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px 3px 3px 3px;','html':'VER'});
	var notiMoreSpan = new Element('span',{'html':'&nbsp;+','style':'font-size:12px;'});
	notiSport.inject(notiInfo);notiLink.inject(notiInfo);notiMedal.inject(notiBody);notiInfo.inject(notiBody);notiMoreSpan.inject(notiMore);notiMore.inject(notiFoot);notiFoot.inject(notiBody);notiBody.inject(notif);notif.inject(notifBox);
	notifBox.inject($(document.body),'bottom');
	var notifTween = new Fx.Tween($('notificationJp'),{
		transition: Fx.Transitions.Cubic.easeOut,
		duration: 600,
		onComplete: function(){
			notifTimer = closeNotification.delay(10000);
			Cookie.write('jpMedal',json.id);
		}
	});
	$('jp-ding').play();
	notifTween.start('top','0');
}
function closeNotification(){
	clearTimeout(notifTimer);
	if($('notificationJpBox')){
		$('notificationJpBox').fade(0);
		(function(){$('notificationJpBox').destroy();}).delay(1500);
	}
}

