                <div class="prayer-time-wrap">
                        <div id="lpe_salah_time"></div>
            		<script type="text/javascript">
            ;(function($) {	
				'use strict';				
				jQuery(document).ready(function ($) {
					function madinagmod(n,m){
						return ((n%m)+m)%m;
					}
					
					function HijriCalendar(adjust){
						var today = new Date();
						if(adjust) {
							var adjustmili = 1000*60*60*24*adjust; 
							var todaymili = today.getTime()+adjustmili;
							today = new Date(todaymili);
						}
						var day = today.getDate();
						var month = today.getMonth();
						var year = today.getFullYear();
						var m = month+1;
						var y = year;
						if(m < 3) {
							y -= 1;
							m += 12;
						}
					
						var a = Math.floor(y/100.);
						var b = 2-a+Math.floor(a/4.);
						if(y < 1583) b = 0;
						if(y==1582) {
							if(m > 10)  b = -10;
							if(m==10) {
								b = 0;
								if(day > 4) b = -10;
							}
						}
					
						var jd = Math.floor(365.25*(y+4716))+Math.floor(30.6001*(m+1))+day+b-1524;
					
						b = 0;
						if(jd>2299160){
							a = Math.floor((jd-1867216.25)/36524.25);
							b = 1+a-Math.floor(a/4.);
						}
						var bb = jd+b+1524;
						var cc = Math.floor((bb-122.1)/365.25);
						var dd = Math.floor(365.25*cc);
						var ee = Math.floor((bb-dd)/30.6001);
						day =(bb-dd)-Math.floor(30.6001*ee);
						month = ee-1;
						if(ee>13) {
							cc += 1;
							month = ee-13;
						}
						year = cc-4716;
					
						if(adjust) {
							var wd = madinagmod(jd+1-adjust,7)+1;
						} else {
							var wd = madinagmod(jd+1,7)+1;
						}
					
						var iyear = 10631./30.;
						var epochastro = 1948084;
						var epochcivil = 1948085;
					
						var shift1 = 8.01/60.;
						
						var z = jd-epochastro;
						var cyc = Math.floor(z/10631.);
						z = z-10631*cyc;
						var j = Math.floor((z-shift1)/iyear);
						var iy = 30*cyc+j;
						z = z-Math.floor(j*iyear+shift1);
						var im = Math.floor((z+28.5001)/29.5);
						if(im==13) im = 12;
						var id = z-Math.floor(29.5001*im-29);
					
						var myRes = new Array(8);
					
						myRes[0] = day; //calculated day (CE)
						myRes[1] = month-1; //calculated month (CE)
						myRes[2] = year; //calculated year (CE)
						myRes[3] = jd-1; //julian day number
						myRes[4] = wd-1; //weekday number
						myRes[5] = id; //islamic date
						myRes[6] = im-1; //islamic month
						myRes[7] = iy; //islamic year
					
						return myRes;
					}
					function HijriDate(adjustment) {
						var wdNames = new Array("Ahad","Ithnin","Thulatha","Arbaa","Khams","Jumuah","Sabt");
						var iMonthNames = new Array("Muharram","Safar","Rabi'al-awwal","Rabi'al-thani",
						"Jumadal al-awwal","Jumadal al-thani","Rajab","Sha'ban",
						"Ramadan","Shawwal","Dhul Qa'ada","Dhul Hijja");
						var iDate = HijriCalendar(adjustment);
						var outputIslamicDate = iDate[5] + " " + iMonthNames[iDate[6]] + " " + iDate[7];
						return outputIslamicDate;
					}
					function format(v) { return ('0' + v).slice(-2); }
					function add(time, minutes) {
							var m = time.split(':').reduce(function (h, m) {  return 60 * h + (+m); });
							m += minutes;
							return [Math.floor(m / 60) % 24, m % 60].map(format).join(':');
					}
					function ampm(t) {
						var v = t.split(':');
						return [v[0] % 12 || 12, v[1]].map(format).join(':') + (v[0] < 12 ? ' AM' : ' PM');
					}
					function to12(t) {
						var v = t.split(':');
						return [v[0] % 12 || 12, v[1]].map(format).join(':') + (v[0] < 12 ? '' : '');
					}
					function to24(t) {
						var v = t.split(':');
						if(parseInt(v[0]) == 12){
							return [12, v[1]].map(format).join(':');
						}else{
							return [parseInt(v[0]) + 12, v[1]].map(format).join(':');
						}
					}
					function parseDate(time){
						var today = new Date();
						var dd = today.getDate();
						var mm = today.getMonth()+1;
						
						var yyyy = today.getFullYear();
						if(dd < 10){
							dd='0'+dd;
						} 
						if(mm < 10){
							mm='0'+mm;
						} 

						return mm+' '+dd+', '+yyyy+' '+time;
					}
					function yesterDate(time, yesto){
						var today = new Date();
						var yesterday = new Date(today);
						if(yesto == 'to'){
							yesterday.setDate(today.getDate() + 1);
						}else{
							yesterday.setDate(today.getDate() - 1);
						}
			
						var dd = yesterday.getDate();
						var mm = yesterday.getMonth()+1;
						
						var yyyy = yesterday.getFullYear();
						if(dd < 10){
							dd='0'+dd;
						} 
						if(mm < 10){
							mm='0'+mm;
						} 

						return mm+' '+dd+', '+yyyy+' '+time;
					}
					
					function previousWakt(wakt){
						if(wakt == 'Fajr'){
							return 'Isha';                
						}else if(wakt == 'Dhuhr'){
							return 'Fajr';
						}else if(wakt == 'Asr'){
							return 'Dhuhr';
						}else if(wakt == 'Maghrib'){
							return 'Asr';
						}else if(wakt == 'Isha'){
							return 'Maghrib';
						}
					}
					function currentTime(){
						var hours = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
						var minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
						var Time = hours + ":" + minutes;
						return Date.parse(parseDate(Time));
					}             
										
					var date = new Date();
					prayTimes.setMethod('ISNA');
					var times = prayTimes.getTimes(date, [10.513350445554094, -61.40580978492516], 'auto');
					var list = ['Fajr', 'Sunrise', 'Dhuhr', 'Asr','Sunset', 'Maghrib', 'Isha'];
												
					var time_obj = {};
					var jamat_obj = {
						Fajr : 0, 
						Maghrib : 0, 
					}
					

					var jamat_json = [];
					if(salah_conf){
						var data = salah_conf.salahTime;
						for(var i in data){
							if(data[i]['Date']){
								var newdate= data[i]['Date'].replace('-','');
								jamat_json[newdate] = {
									Fajr: data[i]['Fajr'],
									Dhuhr: data[i]['Dhuhr'], 
									Asr: data[i]['Asr'], 
									Maghrib: data[i]['Maghrib'], 
									Isha: data[i]['Isha']
								};
							}
						}
						var jday = date.getDate();
						
						jday = (jday < 10) ? '0'+ jday : jday;
						var monthNames=new Array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
						var fullMonthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
						var jdate = monthNames[date.getMonth()]+ jday;
						
						var jamat_start = {};
						for(var i in list)	{
							var obj_var = list[i];
							jamat_start[list[i]] = {};
							if(typeof jamat_obj[list[i]] != "undefined" && jamat_obj[list[i]] != 0){
								jamat_start[list[i]]['jamat'] = add(times[list[i].toLowerCase()], jamat_obj[list[i]]);
								jamat_start[list[i]]['start'] = times[list[i].toLowerCase()];
							}else{
								if(typeof jamat_json[jdate][list[i]] != "undefined"){
									jamat_start[list[i]]['jamat'] = jamat_json[jdate][list[i]];
								}else{
									jamat_start[list[i]]['jamat'] = '--';
								}
								jamat_start[list[i]]['start'] = times[list[i].toLowerCase()];
							}
							
						}									
																
						var htm = '<div id="daily_time_table3" class="daily_time_table3 mobile-center">';
						htm += '<div class="salah-row salah-wakt-wrap3 mobile-center">';
						for(var key in jamat_start)	{
							var obj = jamat_start[key];
							if(key == 'Sunrise' || key == 'Sunset' || key == 'Midnight'){
								// Do nothing
							}else{
								var Wakt = '';
								var previouswakt = previousWakt(key); 
								var curTime = currentTime();
								if(key == 'Fajr'){
									var d = new Date();
									var curHours = d.getHours();
									var curWakt = Date.parse(parseDate(jamat_start[key]["jamat"]));
									if(curHours >= 12){
										var ishaWakt = Date.parse(parseDate(to24(jamat_start['Isha']["jamat"]))); 
										if(curTime > ishaWakt){
											Wakt = 'currentWakt';
										}
										
									}else{
										if( curTime < curWakt ){
											Wakt = 'currentWakt';
										}
									}
								}else{
									var curWakt = Date.parse(parseDate(to24(jamat_start[key]["jamat"])));
									if(key == 'Dhuhr'){
										var preWakt = Date.parse(parseDate(jamat_start[previousWakt(key)]["jamat"]));
									}else{
										var preWakt = Date.parse(parseDate(to24(jamat_start[previousWakt(key)]["jamat"])));
									}
									if(curTime < curWakt && curTime > preWakt){
										Wakt = 'currentWakt';
									}
								}
								htm += '<div class="salah-wakt3 text-center salah-col-md-15 salah-col-sm-15 salah-col-xs-15">';
								htm += '<div class="salah-icon3 pp-icon-wrapper '+ Wakt +' ' +key+ '">';
								htm += '<div class="pp-infobox-icon">';
								htm += '<div class="pp-infobox-icon-inner">';
								htm += '<span class="pp-icon">';
								if(key == 'Fajr'){ 
									htm += '<svg version="1.1" id="fajr_svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="150px" height="150px" viewBox="0 0 150 150" xml:space="preserve"><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M6.799,68.687c0.699-1.238,0.564-2.648,0.749-3.977c0.897-6.419,2.706-12.571,5.352-18.469c4.472-9.965,10.949-18.42,19.387-25.361c7.735-6.363,16.428-10.896,26.078-13.582c1.952-0.543,4.001,0.215,5.092,1.817c1.139,1.673,1.138,3.625-0.241,5.356c-3.513,4.411-6.333,9.206-8.164,14.541c-2.803,8.171-3.75,16.535-2.459,25.123c1.394,9.271,4.984,17.585,10.841,24.89c5.597,6.982,12.581,12.15,20.884,15.498c6.985,2.816,14.24,4.066,21.778,3.736c10.307-0.452,19.56-3.857,27.92-9.816c0.91-0.649,1.766-1.375,2.659-2.049c3.188-2.402,6.174-1.662,7.761,1.916c0,0.807,0,1.613,0,2.42c-0.492,0.225-0.441,0.726-0.55,1.131c-4.368,16.278-13.151,29.589-26.983,39.301c-17.398,12.217-36.601,15.966-57.278,10.992c-27.401-6.59-47.996-29.554-52.109-57.641C7.293,83,7.386,81.434,6.799,79.977C6.799,76.214,6.799,72.45,6.799,68.687z M131.229,101.385c-25.496,10.56-49.353,8.329-69.447-11.195C41.673,70.651,38.681,46.853,48.5,21.163C29.192,30.858,13.379,53.88,16.78,81.881c3.134,25.809,23.107,47.948,50.606,52.291C93.699,138.326,118.934,125.01,131.229,101.385z"/></svg>';
								}else if(key == 'Dhuhr'){
									htm += '<svg version="1.1" id="dhuhr_svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="150px" height="150px" viewBox="0 0 150 150"><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M6.799,74.273c0.926-2.108,2.18-3.879,4.619-4.379c0.564-0.116,1.151-0.174,1.728-0.177c3.624-0.015,7.248-0.022,10.872-0.003c3.718,0.019,6.451,2.589,6.387,5.97c-0.063,3.376-2.719,5.815-6.387,5.837c-3.132,0.018-6.271-0.134-9.394,0.039c-3.71,0.204-6.437-0.987-7.825-4.599C6.799,76.065,6.799,75.169,6.799,74.273z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M144.436,76.962c-0.926,2.106-2.178,3.884-4.618,4.376c-0.651,0.131-1.329,0.176-1.995,0.179c-3.533,0.017-7.067,0.022-10.602,0.005c-3.718-0.02-6.449-2.584-6.391-5.966c0.059-3.374,2.717-5.821,6.381-5.842c3.31-0.018,6.62-0.004,9.93-0.004c4.24,0,5.731,0.988,7.295,4.832C144.436,75.349,144.436,76.155,144.436,76.962z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M74.273,144.436c-2.104-0.928-3.883-2.174-4.379-4.617c-0.114-0.565-0.174-1.15-0.177-1.728c-0.015-3.623-0.022-7.247-0.004-10.87c0.02-3.729,2.574-6.449,5.966-6.391c3.382,0.059,5.82,2.706,5.842,6.38c0.018,3.31,0.003,6.621,0.003,9.931c0,4.249-0.985,5.736-4.831,7.295C75.887,144.436,75.08,144.436,74.273,144.436z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M76.693,6.799c3.846,1.559,4.831,3.046,4.831,7.293c0,3.311,0.015,6.62-0.003,9.93c-0.021,3.725-2.582,6.446-5.971,6.384c-3.383-0.063-5.816-2.709-5.837-6.384c-0.018-3.31-0.004-6.619-0.004-9.93c0-4.247,0.985-5.734,4.832-7.293C75.26,6.799,75.976,6.799,76.693,6.799z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M75.605,116.914c-22.707-0.044-41.31-18.541-41.256-41.275c0.054-23.078,18.558-41.348,41.348-41.275c23.211,0.073,41.201,18.734,41.186,41.3C116.865,98.476,98.242,116.959,75.605,116.914z M105.126,75.651c0.069-16.112-13.178-29.405-29.44-29.542C59.618,45.973,46.314,59.2,46.109,75.517c-0.202,16.055,13.305,29.608,29.508,29.609C91.779,105.127,105.057,91.865,105.126,75.651z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M28.609,22.561c1.662,0.032,3.021,0.73,4.171,1.875c2.503,2.492,5.03,4.96,7.489,7.495c2.491,2.568,2.536,6.166,0.192,8.518s-5.959,2.325-8.516-0.169c-2.719-2.652-5.43-5.322-7.999-8.117c-1.7-1.85-1.846-4.118-0.752-6.362C24.277,23.58,26.18,22.586,28.609,22.561z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M123.043,22.555c2.099,0.075,3.945,1.085,5.004,3.251c1.045,2.142,0.978,4.353-0.6,6.153c-2.796,3.192-5.8,6.21-8.999,8.999c-2.187,1.906-5.641,1.547-7.681-0.517c-2.059-2.083-2.386-5.49-0.47-7.685c2.762-3.164,5.808-6.067,8.884-8.93C120.163,22.915,121.428,22.583,123.043,22.555z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M28.174,128.679c-2.068-0.069-3.918-1.074-4.979-3.239c-1.075-2.192-0.963-4.434,0.662-6.263c2.76-3.104,5.693-6.065,8.81-8.813c2.244-1.979,5.704-1.681,7.791,0.419c2.141,2.155,2.396,5.651,0.32,7.891c-2.733,2.946-5.639,5.734-8.506,8.555C31.243,128.239,29.921,128.648,28.174,128.679z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M122.646,128.675c-1.61-0.024-2.958-0.668-4.076-1.772c-2.575-2.546-5.163-5.081-7.677-7.687c-2.42-2.51-2.434-6.089-0.132-8.415c2.3-2.324,5.909-2.362,8.413,0.054c2.766,2.667,5.496,5.381,8.103,8.202c1.707,1.848,1.856,4.114,0.772,6.36C126.977,127.641,125.076,128.642,122.646,128.675z"/></svg>';
								}else if(key == 'Asr'){
									htm += '<svg version="1.1" id="asr_svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="150px" height="150px" viewBox="0 0 150 150" xml:space="preserve"><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M144.436,70.241c0,3.674,0,7.348,0,11.021c-0.428,0.141-0.25,0.519-0.29,0.794c-0.316,2.211-0.528,4.441-0.937,6.636c-1.901,10.226-5.988,19.528-12.232,27.823c-11.324,15.044-26.287,24.145-44.923,27.152c-1.773,0.287-3.606,0.149-5.329,0.768c-3.584,0-7.168,0-10.752,0c-0.188-0.469-0.614-0.266-0.928-0.296c-5.853-0.562-11.612-1.652-17.069-3.843c-24.838-9.971-39.805-28.033-44.441-54.512c-0.264-1.506-0.028-3.093-0.735-4.522c0-3.763,0-7.527,0-11.291c0.469-0.188,0.267-0.614,0.296-0.928c0.885-9.37,3.45-18.247,8.116-26.43C26.372,23.043,43.027,11.269,65.316,7.549c1.551-0.259,3.179-0.048,4.656-0.75c3.584,0,7.168,0,10.752,0c0.072,0.298,0.316,0.245,0.529,0.261c9.725,0.699,18.899,3.337,27.367,8.155c19.582,11.145,31.343,27.813,35.063,50.1C143.958,66.954,143.77,68.664,144.436,70.241z M75.585,26.898c-27.031,0.048-48.687,21.718-48.687,48.719c0,27.002,21.654,48.671,48.687,48.72c27.017,0.049,48.852-21.802,48.752-48.786C124.236,48.483,102.56,26.85,75.585,26.898z"/></svg>';
								}else if(key == 'Maghrib'){
									htm += '<svg version="1.1" id="magrib_svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="150px" height="150px" viewBox="0 0 150 150" xml:space="preserve"><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M75.596,118.752c-20.919,0-41.839,0.002-62.758-0.001c-3.537-0.001-5.87-1.435-6.924-4.227c-1.648-4.362,1.43-8.825,6.212-8.897c4.319-0.064,8.64-0.014,12.959-0.014c4.806-0.001,9.611-0.026,14.415,0.022c0.949,0.009,1.16-0.223,1.155-1.189c-0.081-15.502,6.693-27.239,20.434-34.178c14.042-7.09,27.789-5.371,40.196,4.297c7.6,5.921,11.967,13.962,13.382,23.549c0.299,2.024,0.461,4.055,0.312,6.085c-0.08,1.096,0.104,1.455,1.31,1.445c7.474-0.063,14.948-0.023,22.423-0.038c1.815-0.002,3.447,0.451,4.826,1.672c2.045,1.812,2.752,4.58,1.826,7.152c-0.896,2.488-3.172,4.195-5.847,4.289c-1.843,0.064-3.688,0.032-5.532,0.032C114.521,118.753,95.059,118.752,75.596,118.752z M77.648,105.613c7.617,0,15.235-0.026,22.853,0.029c1.093,0.007,1.333-0.288,1.379-1.348c0.573-13.279-9.929-24.496-23.4-24.935c-13.856-0.452-25.261,11.056-24.754,24.904c0.044,1.205,0.453,1.376,1.507,1.37C62.704,105.595,70.177,105.613,77.648,105.613z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M84.37,44.168c0.001,2.181,0.036,4.362-0.006,6.542c-0.074,3.835-2.906,6.648-6.612,6.621c-3.635-0.026-6.453-2.83-6.499-6.592c-0.053-4.36-0.056-8.723,0.001-13.083c0.048-3.716,2.951-6.586,6.541-6.595c3.591-0.008,6.48,2.852,6.565,6.565C84.41,39.806,84.369,41.987,84.37,44.168z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M43.112,74.893c-2.334-0.062-3.852-0.74-5.105-1.987c-2.89-2.875-5.812-5.722-8.636-8.661c-2.636-2.743-2.623-6.709-0.096-9.28c2.534-2.579,6.526-2.679,9.273-0.052c3.121,2.983,6.184,6.037,9.121,9.199c1.934,2.081,2.141,4.62,0.887,7.163C47.349,73.722,45.242,74.83,43.112,74.893z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M113.093,74.885c-2.679-0.043-4.788-1.137-6.014-3.577c-1.216-2.416-1.125-4.913,0.663-6.94c3.11-3.528,6.432-6.883,9.975-9.979c2.467-2.154,6.289-1.776,8.6,0.546c2.312,2.322,2.668,6.15,0.503,8.601c-3.114,3.526-6.505,6.802-9.966,9.992C115.829,74.473,114.498,74.838,113.093,74.885z"/></svg>';
								}else if(key == 'Isha'){
									htm += '<svg version="1.1" id="isha_svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="150px" height="150px" viewBox="0 0 150 150" xml:space="preserve"><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M45.524,6.799c2.653,0.685,4.025,2.61,5.063,4.989c2.159,4.948,4.441,9.843,6.637,14.776c0.343,0.771,0.737,1.139,1.646,1.229c5.832,0.582,11.659,1.222,17.48,1.905c2.552,0.3,4.475,1.585,5.247,4.135c0.752,2.484-0.064,4.57-1.942,6.283c-4.266,3.894-8.522,7.799-12.816,11.662c-0.705,0.634-0.945,1.175-0.727,2.172c1.234,5.63,2.38,11.279,3.516,16.93c0.503,2.506,0.006,4.77-2.155,6.347c-2.137,1.559-4.426,1.472-6.68,0.196c-5.015-2.838-10.031-5.672-15.012-8.569c-0.878-0.511-1.493-0.56-2.405-0.028c-4.938,2.881-9.922,5.682-14.901,8.491c-2.898,1.636-5.673,1.314-7.69-0.864c-1.549-1.673-1.693-3.671-1.263-5.776c1.156-5.646,2.298-11.297,3.518-16.93c0.182-0.84-0.012-1.287-0.609-1.824c-4.326-3.896-8.63-7.813-12.917-11.751c-2.86-2.627-3.031-6.343-0.448-8.853c1.112-1.08,2.513-1.492,4.006-1.657c5.826-0.644,11.65-1.299,17.48-1.9c0.797-0.082,1.015-0.545,1.28-1.133c2.203-4.88,4.485-9.727,6.612-14.64c1.031-2.381,2.33-4.366,4.929-5.19C44.091,6.799,44.808,6.799,45.524,6.799z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M59.234,144.436c-1.453-0.824-2.788-1.72-3.071-3.584c-0.133-0.877,0.022-1.702,0.187-2.524c0.796-3.989,1.609-7.975,2.482-11.948c0.159-0.724,0.017-1.144-0.511-1.62c-3.193-2.88-6.386-5.763-9.522-8.704c-2.495-2.341-1.962-6.104,0.987-7.304c1.046-0.426,2.188-0.449,3.295-0.575c3.603-0.408,7.207-0.807,10.815-1.161c0.854-0.085,1.307-0.435,1.657-1.233c1.688-3.842,3.416-7.666,5.191-11.469c1.455-3.116,4.924-3.835,7.136-1.535c0.535,0.557,0.871,1.242,1.185,1.935c1.637,3.62,3.316,7.222,4.875,10.877c0.438,1.026,1.044,1.363,2.081,1.466c4.054,0.402,8.097,0.9,12.148,1.324c1.908,0.199,3.347,1.063,3.992,2.882c0.669,1.882,0.061,3.513-1.388,4.839c-3.139,2.875-6.267,5.762-9.442,8.594c-0.595,0.529-0.721,1.018-0.566,1.747c0.814,3.849,1.597,7.703,2.388,11.556c0.742,3.615,0.123,4.937-3.003,6.439c-0.717,0-1.434,0-2.15,0c-4.046-2.32-8.105-4.62-12.128-6.982c-0.789-0.464-1.367-0.443-2.158-0.003c-4.194,2.337-8.229,4.963-12.597,6.985C60.489,144.436,59.862,144.436,59.234,144.436z"/><path fill-rule="evenodd" clip-rule="evenodd" fill="#888888" d="M104.088,82.457c0.518-2.561,0.933-5.687,1.817-8.673c0.761-2.566,0.302-4.271-1.894-5.879c-2.156-1.578-3.997-3.585-5.994-5.384c-1.246-1.122-2.032-2.412-1.533-4.144c0.507-1.764,1.791-2.572,3.563-2.764c3.516-0.383,7.023-0.834,10.543-1.171c0.87-0.083,1.312-0.345,1.668-1.173c1.342-3.116,2.827-6.168,4.174-9.283c0.733-1.696,1.783-2.965,3.723-2.984c2.016-0.019,3.079,1.317,3.832,3.041c1.376,3.149,2.839,6.261,4.224,9.407c0.288,0.653,0.642,0.901,1.375,0.974c3.651,0.361,7.294,0.818,10.941,1.223c1.628,0.181,2.815,0.994,3.313,2.535c0.513,1.586,0.019,2.986-1.227,4.117c-2.62,2.379-5.201,4.802-7.863,7.132c-0.755,0.661-0.891,1.276-0.687,2.204c0.758,3.449,1.427,6.916,2.159,10.371c0.34,1.602-0.06,2.958-1.34,3.95c-1.347,1.044-2.829,0.98-4.275,0.167c-3.114-1.754-6.228-3.51-9.314-5.313c-0.764-0.445-1.357-0.504-2.16-0.029c-3.075,1.82-6.181,3.594-9.313,5.315C107.021,87.634,104.048,85.986,104.088,82.457z"/></svg>';
								}
								htm += '</span>';
								htm += '</div>';
								htm += '</div>';
								htm += '</div>';
								htm += '<div class="salah-time3 '+ Wakt +'">' +key+ ' | ' + obj['jamat']+ '</div>';
								htm += '</div>';
							}
						}
						htm += '</div>';
						htm += '<div class="salah-row mt-40 pt-15">';
						htm += '<div id="daily-salat-date3" class="salah-col-md-12 mobile-center"><div class="daily-salat-date3">'+ date.getDate()+' '+ fullMonthNames[date.getMonth()]+', '+ date.getFullYear()+' <span class="accent-color">|</span> ' + HijriDate()+ '<div id="daily-salat-time3"></div></div>';
						htm += '</div>';
						htm += '</div>';
						
						document.getElementById("lpe_salah_time").innerHTML = htm;
					}
					
					var x = setInterval(function() {
						var d = new Date();
						$("#daily-salat-time3").html(d.toLocaleTimeString());
					}, 1000);	
										
									});
			}(jQuery));
        </script>
        </div>
        		{"id":20622,"date":"2022-04-19T16:53:48","date_gmt":"2022-04-19T20:53:48","guid":{"rendered":"https:\/\/muslims.tt\/?page_id=20622"},"modified":"2022-04-19T17:01:46","modified_gmt":"2022-04-19T21:01:46","slug":"salaah-times","status":"publish","type":"page","link":"https:\/\/muslims.tt\/index.php\/salaah-times\/","title":{"rendered":"Salaah Times"},"content":{"rendered":"\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":20625,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-templates\/full_width.php","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"footnotes":""},"class_list":["post-20622","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/muslims.tt\/index.php\/wp-json\/wp\/v2\/pages\/20622","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/muslims.tt\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/muslims.tt\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/muslims.tt\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/muslims.tt\/index.php\/wp-json\/wp\/v2\/comments?post=20622"}],"version-history":[{"count":2,"href":"https:\/\/muslims.tt\/index.php\/wp-json\/wp\/v2\/pages\/20622\/revisions"}],"predecessor-version":[{"id":20624,"href":"https:\/\/muslims.tt\/index.php\/wp-json\/wp\/v2\/pages\/20622\/revisions\/20624"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/muslims.tt\/index.php\/wp-json\/wp\/v2\/media\/20625"}],"wp:attachment":[{"href":"https:\/\/muslims.tt\/index.php\/wp-json\/wp\/v2\/media?parent=20622"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}