var host_service="http://eltiempo.visitacostadelsol.com";
var default_town = "malaga";
var default_lang = "es";
var tpl="";

$(document).ready(function() {

    $('input[name=destacado]').each( function(i, element){
				var oParent=$(element).parent();
				var parentId=$(oParent).attr('id');
				var oTownValue="";
				var oTplValue="";
				var oLangValue="";
				var found =$(oParent).find('input[name=destacado_prevision_town]');
				if (found.length > 0) {
					oTownValue=$(oParent).find('input[name=destacado_prevision_town]').attr('value');
					if(oTownValue!=""){
						if(oTownValue=="municipio" & getLocation()!=""){
	          				oTownValue=getLocation();
	        			}
					}
					if(oTownValue==""){
	          				oTownValue=location;
	        		}
				}
				var found =$(oParent).find('input[name=destacado_prevision_tpl]');
				if (found.length > 0) {
					oTplValue=$(oParent).find('input[name=destacado_prevision_tpl]').attr('value');
      				if(oTplValue==""){
        				oTplValue=tpl;
      				}
				}
				var found =$(oParent).find('input[name=destacado_prevision_lang]');
				if (found.length > 0) {
					oLangValue=$(oParent).find('input[name=destacado_prevision_lang]').attr('value');
      				if(oLangValue==""){
        				oLangValue=lang;
      				}
				}
        mostrarInformacionPrevision(oLangValue,parentId,"featured_day_weather",getData(),getYear(),oTownValue,oTplValue);
 	});
});

