var marketTimeline={marketOpen:"",countdown:"",today:new Date(),init:function(){var a=(this.today.getTimezoneOffset())/60;var e=this.today.getHours()+a;this.today.setHours(e);var d=marketTimeline.get_opening_markets(12);var c=Math.floor(Math.random()*d.length);var b=this;if(d.length>0){this.marketOpen=markets.get(d[c].id).attributes.title+" opens in";this.countdown=marketTimeline.get_countdown(d[c].open_time);$(".marketOpening").html(this.marketOpen);$(".marketOpeningCountdown").html(this.countdown);setInterval(function(){b.countdown=marketTimeline.get_countdown(d[c].open_time);$(".marketOpeningCountdown").html(b.countdown)},1000)}},get_closed_markets:function(){var f=(this.today.getTimezoneOffset())/60;var n=[];for(var h=0;h<markets.length;h++){var a=false;var c=markets.at(h).attributes;var d=c.utc_offset;for(var g=0;g<c.dates_closed.length;g++){var e=new Date(this.today.getUTCFullYear(),c.dates_closed[g].split("-")[0]-1,c.dates_closed[g].split("-")[1]);e.setHours(e.getHours()+d+f);if(this.compareDate(e,this.today)){a=true;break}}if(!a){var l=false;for(var b=0;b<c.days_open.length;b++){var m=new Date();m.setHours(this.today.getHours()+d);if(c.days_open[b]==m.getUTCDay()){l=true;break}}if(l){open_date=new Date();open_date.setHours(c.open_time.split(":")[0],c.open_time.split(":")[1]);close_date=new Date();close_date.setHours(c.close_time.split(":")[0],c.close_time.split(":")[1]);isOpen=this.compareTime(open_date,close_date);if(!isOpen){n.push(c.id)}else{}}else{n.push(c.id)}}else{}}return n},get_opening_markets:function(j){var n;var m=this.get_closed_markets();var e=[];for(var f=0;f<m.length;f++){var c=markets.get(m[f]).attributes;var d=new Date();var g=false;d.setHours(c.open_time.split(":")[0],c.open_time.split(":")[1]);for(var b=0;b<c.days_open.length;b++){var l=new Date();l.setHours(this.today.getHours()+c.utc_offset);if(c.days_open[b]==l.getDay()){g=true}}n=(d.getTime()-this.today.getTime())/3600000;if(g&&n>0&&n<j){e.push({id:c.id,open_time:d.getTime()})}else{var h=false;for(var b=0;b<c.days_open.length;b++){var l=new Date();l.setHours(this.today.getHours()+c.utc_offset);var a=(l.getDay()==6)?0:l.getDay()+1;if(c.days_open[b]==a){h=true;break}}if(h){d.setHours(c.open_time.split(":")[0],c.open_time.split(":")[1]);d=new Date(d.getTime()+86400000);for(var b=0;b<c.days_open.length;b++){if(c.days_open[b]==d.getDay()){n=(d.getTime()-this.today.getTime())/3600000;if(n>0&&n<j){e.push({id:c.id,open_time:d.getTime()})}}}}}}return e},get_countdown:function(a){var d=new Date();var c=(d.getTimezoneOffset())/60;var f=d.getHours()+c;d.setHours(f);var i=a-d.getTime();var e=Math.floor((i/1000)%60);var b=Math.floor((i/(1000*60))%60);var h=Math.floor((i/(1000*60*60))%24);var g=this.dub(h)+":"+this.dub(b)+":"+this.dub(e);if(e<0){g="00:00:00"}return g},compareDate:function(c,b){var a=(c.getUTCMonth()==b.getUTCMonth()&&c.getUTCDate()==b.getUTCDate())?true:false;return a},compareTime:function(c,b){var a=(this.today>c&&this.today<b)?true:false;return a},dub:function(a){var b=a.toString();if(b.length<2){b="0"+b}return b}};
