nivaria

plantilla html itf

May 1st, 2018
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 175.05 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
  4. <head>
  5. <meta content='DC029CDCD9663EA2BC21CDE7A5B6D5BD' name='msvalidate.01'/>
  6. <b:include data='blog' name='all-head-content'/>
  7.  
  8. <b:if cond='data:blog.url == data:blog.homepageUrl'>
  9. <meta content='DESCRIPTION HERE' name='description'/>
  10. <meta content='KEYWORDS HERE' name='keywords'/>
  11. </b:if>
  12.  
  13. <!-- Start www.bloggertipandtrick.net: Changing the Blogger Title Tag -->
  14. <b:if cond='data:blog.pageType == &quot;index&quot;'>
  15. <title><data:blog.pageTitle/></title>
  16. <b:else/>
  17. <title><data:blog.pageName/> ~ <data:blog.title/></title>
  18. </b:if>
  19. <!-- End www.bloggertipandtrick.net: Changing the Blogger Title Tag -->
  20.  
  21. <link href='YOUR-FAVICON-URL' rel='shortcut icon' type='image/vnd.microsoft.icon'/>
  22.  
  23. <b:skin><![CDATA[/*
  24. -----------------------------------------------
  25. Blogger Template Style
  26. Name: Elegant
  27. Author: Lasantha Bandara
  28. URL 1: http://www.premiumbloggertemplates.com/
  29. URL 2: http://www.bloggertipandtrick.net/
  30. Date: July 2011
  31. License: This free Blogger template is licensed under the Creative Commons Attribution 3.0 License, which permits both personal and commercial use.
  32. However, to satisfy the 'attribution' clause of the license, you are required to keep the footer links intact which provides due credit to its authors. For more specific details about the license, you may visit the URL below:
  33. http://creativecommons.org/licenses/by/3.0/
  34. ----------------------------------------------- */
  35.  
  36. /* Variable definitions
  37. ====================
  38. <Variable name="bgcolor" description="Page Background Color"
  39. type="color" default="#fff" value="#ffffff">
  40. <Variable name="textcolor" description="Text Color"
  41. type="color" default="#333" value="#333333">
  42. <Variable name="linkcolor" description="Link Color"
  43. type="color" default="#58a" value="#5588aa">
  44. <Variable name="pagetitlecolor" description="Blog Title Color"
  45. type="color" default="#666" value="#666666">
  46. <Variable name="descriptioncolor" description="Blog Description Color"
  47. type="color" default="#999" value="#999999">
  48. <Variable name="titlecolor" description="Post Title Color"
  49. type="color" default="#c60" value="#cc6600">
  50. <Variable name="bordercolor" description="Border Color"
  51. type="color" default="#ccc" value="#cccccc">
  52. <Variable name="sidebarcolor" description="Sidebar Title Color"
  53. type="color" default="#999" value="#999999">
  54. <Variable name="sidebartextcolor" description="Sidebar Text Color"
  55. type="color" default="#666" value="#666666">
  56. <Variable name="visitedlinkcolor" description="Visited Link Color"
  57. type="color" default="#999" value="#999999">
  58. <Variable name="bodyfont" description="Text Font"
  59. type="font" default="normal normal 100% Georgia, Serif" value="normal normal 100% Georgia, Serif">
  60. <Variable name="headerfont" description="Sidebar Title Font"
  61. type="font"
  62. default="normal normal 78% 'Trebuchet MS',Trebuchet,Arial,Verdana,Sans-serif" value="normal normal 78% &#39;Trebuchet MS&#39;,Trebuchet,Arial,Verdana,Sans-serif">
  63. <Variable name="pagetitlefont" description="Blog Title Font"
  64. type="font"
  65. default="normal normal 200% Georgia, Serif" value="normal normal 200% Georgia, Serif">
  66. <Variable name="descriptionfont" description="Blog Description Font"
  67. type="font"
  68. default="normal normal 78% 'Trebuchet MS', Trebuchet, Arial, Verdana, Sans-serif" value="normal normal 78% &#39;Trebuchet MS&#39;, Trebuchet, Arial, Verdana, Sans-serif">
  69. <Variable name="postfooterfont" description="Post Footer Font"
  70. type="font"
  71. default="normal normal 78% 'Trebuchet MS', Trebuchet, Arial, Verdana, Sans-serif" value="normal normal 78% &#39;Trebuchet MS&#39;, Trebuchet, Arial, Verdana, Sans-serif">
  72. <Variable name="startSide" description="Side where text starts in blog language"
  73. type="automatic" default="left">
  74. <Variable name="endSide" description="Side where text ends in blog language"
  75. type="automatic" default="right">
  76. */
  77.  
  78. /* Use this with templates/template-twocol.html */
  79.  
  80. .post-body img {max-width:99% !important;}
  81. ]]></b:skin>
  82.  
  83. <script src='https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js' type='text/javascript'/>
  84.  
  85. <script type='text/javascript'>
  86. //<![CDATA[
  87.  
  88. (function($){
  89. /* hoverIntent by Brian Cherne */
  90. $.fn.hoverIntent = function(f,g) {
  91. // default configuration options
  92. var cfg = {
  93. sensitivity: 7,
  94. interval: 100,
  95. timeout: 0
  96. };
  97. // override configuration options with user supplied object
  98. cfg = $.extend(cfg, g ? { over: f, out: g } : f );
  99.  
  100. // instantiate variables
  101. // cX, cY = current X and Y position of mouse, updated by mousemove event
  102. // pX, pY = previous X and Y position of mouse, set by mouseover and polling interval
  103. var cX, cY, pX, pY;
  104.  
  105. // A private function for getting mouse position
  106. var track = function(ev) {
  107. cX = ev.pageX;
  108. cY = ev.pageY;
  109. };
  110.  
  111. // A private function for comparing current and previous mouse position
  112. var compare = function(ev,ob) {
  113. ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
  114. // compare mouse positions to see if they've crossed the threshold
  115. if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
  116. $(ob).unbind("mousemove",track);
  117. // set hoverIntent state to true (so mouseOut can be called)
  118. ob.hoverIntent_s = 1;
  119. return cfg.over.apply(ob,[ev]);
  120. } else {
  121. // set previous coordinates for next time
  122. pX = cX; pY = cY;
  123. // use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
  124. ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
  125. }
  126. };
  127.  
  128. // A private function for delaying the mouseOut function
  129. var delay = function(ev,ob) {
  130. ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
  131. ob.hoverIntent_s = 0;
  132. return cfg.out.apply(ob,[ev]);
  133. };
  134.  
  135. // A private function for handling mouse 'hovering'
  136. var handleHover = function(e) {
  137. // next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut
  138. var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
  139. while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }
  140. if ( p == this ) { return false; }
  141.  
  142. // copy objects to be passed into t (required for event object to be passed in IE)
  143. var ev = jQuery.extend({},e);
  144. var ob = this;
  145.  
  146. // cancel hoverIntent timer if it exists
  147. if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }
  148.  
  149. // else e.type == "onmouseover"
  150. if (e.type == "mouseover") {
  151. // set "previous" X and Y position based on initial entry point
  152. pX = ev.pageX; pY = ev.pageY;
  153. // update "current" X and Y position based on mousemove
  154. $(ob).bind("mousemove",track);
  155. // start polling interval (self-calling timeout) to compare mouse coordinates over time
  156. if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}
  157.  
  158. // else e.type == "onmouseout"
  159. } else {
  160. // unbind expensive mousemove event
  161. $(ob).unbind("mousemove",track);
  162. // if hoverIntent state is true, then call the mouseOut function after the specified delay
  163. if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
  164. }
  165. };
  166.  
  167. // bind the function to the two event listeners
  168. return this.mouseover(handleHover).mouseout(handleHover);
  169. };
  170.  
  171. })(jQuery);
  172.  
  173. //]]>
  174. </script>
  175.  
  176. <script type='text/javascript'>
  177. //<![CDATA[
  178.  
  179. /*
  180. * Superfish v1.4.8 - jQuery menu widget
  181. * Copyright (c) 2008 Joel Birch
  182. *
  183. * Dual licensed under the MIT and GPL licenses:
  184. * http://www.opensource.org/licenses/mit-license.php
  185. * http://www.gnu.org/licenses/gpl.html
  186. *
  187. * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
  188. */
  189.  
  190. ;(function($){
  191. $.fn.superfish = function(op){
  192.  
  193. var sf = $.fn.superfish,
  194. c = sf.c,
  195. $arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
  196. over = function(){
  197. var $$ = $(this), menu = getMenu($$);
  198. clearTimeout(menu.sfTimer);
  199. $$.showSuperfishUl().siblings().hideSuperfishUl();
  200. },
  201. out = function(){
  202. var $$ = $(this), menu = getMenu($$), o = sf.op;
  203. clearTimeout(menu.sfTimer);
  204. menu.sfTimer=setTimeout(function(){
  205. o.retainPath=($.inArray($$[0],o.$path)>-1);
  206. $$.hideSuperfishUl();
  207. if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
  208. },o.delay);
  209. },
  210. getMenu = function($menu){
  211. var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
  212. sf.op = sf.o[menu.serial];
  213. return menu;
  214. },
  215. addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
  216.  
  217. return this.each(function() {
  218. var s = this.serial = sf.o.length;
  219. var o = $.extend({},sf.defaults,op);
  220. o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
  221. $(this).addClass([o.hoverClass,c.bcClass].join(' '))
  222. .filter('li:has(ul)').removeClass(o.pathClass);
  223. });
  224. sf.o[s] = sf.op = o;
  225.  
  226. $('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
  227. if (o.autoArrows) addArrow( $('>a:first-child',this) );
  228. })
  229. .not('.'+c.bcClass)
  230. .hideSuperfishUl();
  231.  
  232. var $a = $('a',this);
  233. $a.each(function(i){
  234. var $li = $a.eq(i).parents('li');
  235. $a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
  236. });
  237. o.onInit.call(this);
  238.  
  239. }).each(function() {
  240. var menuClasses = [c.menuClass];
  241. if (sf.op.dropShadows && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
  242. $(this).addClass(menuClasses.join(' '));
  243. });
  244. };
  245.  
  246. var sf = $.fn.superfish;
  247. sf.o = [];
  248. sf.op = {};
  249. sf.IE7fix = function(){
  250. var o = sf.op;
  251. if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
  252. this.toggleClass(sf.c.shadowClass+'-off');
  253. };
  254. sf.c = {
  255. bcClass : 'sf-breadcrumb',
  256. menuClass : 'sf-js-enabled',
  257. anchorClass : 'sf-with-ul',
  258. arrowClass : 'sf-sub-indicator',
  259. shadowClass : 'sf-shadow'
  260. };
  261. sf.defaults = {
  262. hoverClass : 'sfHover',
  263. pathClass : 'overideThisToUse',
  264. pathLevels : 1,
  265. delay : 800,
  266. animation : {opacity:'show'},
  267. speed : 'normal',
  268. autoArrows : true,
  269. dropShadows : true,
  270. disableHI : false, // true disables hoverIntent detection
  271. onInit : function(){}, // callback functions
  272. onBeforeShow: function(){},
  273. onShow : function(){},
  274. onHide : function(){}
  275. };
  276. $.fn.extend({
  277. hideSuperfishUl : function(){
  278. var o = sf.op,
  279. not = (o.retainPath===true) ? o.$path : '';
  280. o.retainPath = false;
  281. var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
  282. .find('>ul').hide().css('visibility','hidden');
  283. o.onHide.call($ul);
  284. return this;
  285. },
  286. showSuperfishUl : function(){
  287. var o = sf.op,
  288. sh = sf.c.shadowClass+'-off',
  289. $ul = this.addClass(o.hoverClass)
  290. .find('>ul:hidden').css('visibility','visible');
  291. sf.IE7fix.call($ul);
  292. o.onBeforeShow.call($ul);
  293. $ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
  294. return this;
  295. }
  296. });
  297.  
  298. })(jQuery);
  299.  
  300.  
  301.  
  302. //]]>
  303. </script>
  304.  
  305. <script type='text/javascript'>
  306. //<![CDATA[
  307.  
  308. /*
  309. * jQuery Cycle Plugin (with Transition Definitions)
  310. * Examples and documentation at: http://jquery.malsup.com/cycle/
  311. * Copyright (c) 2007-2010 M. Alsup
  312. * Version: 2.88 (08-JUN-2010)
  313. * Dual licensed under the MIT and GPL licenses.
  314. * http://jquery.malsup.com/license.html
  315. * Requires: jQuery v1.2.6 or later
  316. */
  317. (function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);
  318. /*
  319. * jQuery Cycle Plugin Transition Definitions
  320. * This script is a plugin for the jQuery Cycle Plugin
  321. * Examples and documentation at: http://malsup.com/jquery/cycle/
  322. * Copyright (c) 2007-2010 M. Alsup
  323. * Version: 2.72
  324. * Dual licensed under the MIT and GPL licenses:
  325. * http://www.opensource.org/licenses/mit-license.php
  326. * http://www.gnu.org/licenses/gpl.html
  327. */
  328. (function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);
  329.  
  330. //]]>
  331. </script>
  332.  
  333. <script type='text/javascript'>
  334. /* <![CDATA[ */
  335. jQuery.noConflict();
  336. jQuery(function(){
  337. jQuery('ul.menu-primary').superfish({
  338. animation: {opacity:'show'},
  339. autoArrows: true,
  340. dropShadows: false,
  341. speed: 200,
  342. delay: 800
  343. });
  344. });
  345.  
  346. jQuery(function(){
  347. jQuery('ul.menu-secondary').superfish({
  348. animation: {opacity:'show'},
  349. autoArrows: true,
  350. dropShadows: false,
  351. speed: 200,
  352. delay: 800
  353. });
  354. });
  355.  
  356. jQuery(document).ready(function() {
  357. jQuery('.fp-slides').cycle({
  358. fx: 'fade',
  359. timeout: 4000,
  360. delay: 0,
  361. speed: 1000,
  362. next: '.fp-next',
  363. prev: '.fp-prev',
  364. pager: '.fp-pager',
  365. continuous: 0,
  366. sync: 1,
  367. pause: 1,
  368. pauseOnPagerHover: 1,
  369. cleartype: true,
  370. cleartypeNoBg: true
  371. });
  372. });
  373.  
  374. /* ]]> */
  375.  
  376. </script>
  377.  
  378. <script type='text/javascript'>
  379. //<![CDATA[
  380.  
  381. function showrecentcomments(json){for(var i=0;i<a_rc;i++){var b_rc=json.feed.entry[i];var c_rc;if(i==json.feed.entry.length)break;for(var k=0;k<b_rc.link.length;k++){if(b_rc.link[k].rel=='alternate'){c_rc=b_rc.link[k].href;break;}}c_rc=c_rc.replace("#","#comment-");var d_rc=c_rc.split("#");d_rc=d_rc[0];var e_rc=d_rc.split("/");e_rc=e_rc[5];e_rc=e_rc.split(".html");e_rc=e_rc[0];var f_rc=e_rc.replace(/-/g," ");f_rc=f_rc.link(d_rc);var g_rc=b_rc.published.$t;var h_rc=g_rc.substring(0,4);var i_rc=g_rc.substring(5,7);var j_rc=g_rc.substring(8,10);var k_rc=new Array();k_rc[1]="Jan";k_rc[2]="Feb";k_rc[3]="Mar";k_rc[4]="Apr";k_rc[5]="May";k_rc[6]="Jun";k_rc[7]="Jul";k_rc[8]="Aug";k_rc[9]="Sep";k_rc[10]="Oct";k_rc[11]="Nov";k_rc[12]="Dec";if("content" in b_rc){var l_rc=b_rc.content.$t;}else if("summary" in b_rc){var l_rc=b_rc.summary.$t;}else var l_rc="";var re=/<\S[^>]*>/g;l_rc=l_rc.replace(re,"");if(m_rc==true)document.write('On '+k_rc[parseInt(i_rc,10)]+' '+j_rc+' ');document.write('<a href="'+c_rc+'">'+b_rc.author[0].name.$t+'</a> commented');if(n_rc==true)document.write(' on '+f_rc);document.write(': ');if(l_rc.length<o_rc){document.write('<i>&#8220;');document.write(l_rc);document.write('&#8221;</i><br/><br/>');}else{document.write('<i>&#8220;');l_rc=l_rc.substring(0,o_rc);var p_rc=l_rc.lastIndexOf(" ");l_rc=l_rc.substring(0,p_rc);document.write(l_rc+'&hellip;&#8221;</i>');document.write('<br/><br/>');}}}
  382.  
  383. function rp(json){document.write('<ul>');for(var i=0;i<numposts;i++){document.write('<li>');var entry=json.feed.entry[i];var posttitle=entry.title.$t;var posturl;if(i==json.feed.entry.length)break;for(var k=0;k<entry.link.length;k++){if(entry.link[k].rel=='alternate'){posturl=entry.link[k].href;break}}posttitle=posttitle.link(posturl);var readmorelink="(more)";readmorelink=readmorelink.link(posturl);var postdate=entry.published.$t;var cdyear=postdate.substring(0,4);var cdmonth=postdate.substring(5,7);var cdday=postdate.substring(8,10);var monthnames=new Array();monthnames[1]="Jan";monthnames[2]="Feb";monthnames[3]="Mar";monthnames[4]="Apr";monthnames[5]="May";monthnames[6]="Jun";monthnames[7]="Jul";monthnames[8]="Aug";monthnames[9]="Sep";monthnames[10]="Oct";monthnames[11]="Nov";monthnames[12]="Dec";if("content"in entry){var postcontent=entry.content.$t}else if("summary"in entry){var postcontent=entry.summary.$t}else var postcontent="";var re=/<\S[^>]*>/g;postcontent=postcontent.replace(re,"");document.write(posttitle);if(showpostdate==true)document.write(' - '+monthnames[parseInt(cdmonth,10)]+' '+cdday);if(showpostsummary==true){if(postcontent.length<numchars){document.write(postcontent)}else{postcontent=postcontent.substring(0,numchars);var quoteEnd=postcontent.lastIndexOf(" ");postcontent=postcontent.substring(0,quoteEnd);document.write(postcontent+'...'+readmorelink)}}document.write('</li>')}document.write('</ul>')}
  384.  
  385. //]]>
  386. </script>
  387.  
  388. <script type='text/javascript'>
  389. summary_noimg = 550;
  390. summary_img = 375;
  391. img_thumb_height = 150;
  392. img_thumb_width = 200;
  393. </script>
  394. <script type='text/javascript'>
  395. //<![CDATA[
  396.  
  397. function removeHtmlTag(strx,chop){
  398. if(strx.indexOf("<")!=-1)
  399. {
  400. var s = strx.split("<");
  401. for(var i=0;i<s.length;i++){
  402. if(s[i].indexOf(">")!=-1){
  403. s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
  404. }
  405. }
  406. strx = s.join("");
  407. }
  408. chop = (chop < strx.length-1) ? chop : strx.length-2;
  409. while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
  410. strx = strx.substring(0,chop-1);
  411. return strx+'...';
  412. }
  413.  
  414. function createSummaryAndThumb(pID){
  415. var div = document.getElementById(pID);
  416. var imgtag = "";
  417. var img = div.getElementsByTagName("img");
  418. var summ = summary_noimg;
  419. if(img.length>=1) {
  420. imgtag = '<span style="float:left; padding:0px 10px 5px 0px;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px"/></span>';
  421. summ = summary_img;
  422. }
  423.  
  424. var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
  425. div.innerHTML = summary;
  426. }
  427.  
  428. //]]>
  429. </script>
  430.  
  431. <style type='text/css'>
  432. body{background:#FFFFFF url(http://3.bp.blogspot.com/-dqMS3S44rGI/TjhSrXK6JfI/AAAAAAAAAXw/cvu01trV9Ug/s000/background.png) center top no-repeat;color:#544B3F;font-family: Arial, Verdana;font-size: 12px;margin:0px;padding:0px;}
  433. a:link,a:visited{color:#CD4436;text-decoration:underline;outline:none;}
  434. a:hover{color:#F0A09B;text-decoration:none;outline:none;}
  435. a img{border-width:0}
  436. #body-wrapper{margin:0px;padding:0px;}
  437. blockquote{overflow:hidden;padding-left:9px;font-style:italic;color:#666;border-left:3px solid #CADAE7;}
  438. /* Header-----------------------------------------------*/
  439. #header-wrapper{width:950px;margin:0 auto 0;height:60px;padding:30px 0px;overflow:hidden;}
  440. #header-inner{background-position:center;margin-left:auto;margin-right:auto}
  441. #header{margin:0;border:0 solid $bordercolor;color:$pagetitlecolor;float:left;width:47%;overflow:hidden;}
  442. #header h1{margin:0 5px 0;padding:0px 0px 0px 0px;font-family:Arial, Helvetica, Sans-serif;font-weight:bold;font-size:36px;line-height:36px;color:#595656;text-shadow:0px 1px 0px #fff;}
  443. #header .description{padding-left:7px;color:#666;text-shadow:0px 1px 0px #fff;line-height:14px;font-size:14px;padding-top:0px;margin-top:5px;}
  444. #header h1 a,#header h1 a:visited{color:#595656;text-decoration:none}
  445. #header h2{padding-left:15px;color:#666;font:14px Arial,Helvetica,Sans-serif}
  446. #header2{float:right;width:51%;margin-right:0px;padding-right:0px;overflow:hidden;}
  447. #header2 .widget{padding:0px 0px 0px 0px;float:right}
  448. /* Outer-Wrapper----------------------------------------------- */
  449. #outer-wrapper{width:950px;margin:0px auto 0px;padding:0;text-align:left;font:$bodyfont;}
  450. #content-wrapper{background:#FFFFFF;}
  451. #main-wrapper{width:625px;padding-top:10px;padding-left:0px;padding-right:0px;float:left;word-wrap:break-word;/* fix for long text breaking sidebar float in IE */
  452. overflow:hidden;/* fix for long non-text content breaking IE sidebar float */
  453. }
  454. #rsidebar-wrapper{width:312px;float:right;margin-left:0px;padding-right:0px;margin-right:0px;padding-top:10px;padding-bottom:15px;word-wrap:break-word;/* fix for long text breaking sidebar float in IE */
  455. overflow:hidden;/* fix for long non-text content breaking IE sidebar float */
  456. }
  457. .menus,.menus *{margin:0;padding:0;list-style:none;list-style-type:none;line-height:1.0}
  458. .menus ul{position:absolute;top:-999em;width:100%}
  459. .menus ul li{width:100%}
  460. .menus li:hover{visibility:inherit}
  461. .menus li{float:left;position:relative}
  462. .menus a{display:block;position:relative}
  463. .menus li:hover ul,.menus li.sfHover ul{left:0;top:100%;z-index:99}
  464. .menus li:hover li ul,.menus li.sfHover li ul{top:-999em}
  465. .menus li li:hover ul,.menus li li.sfHover ul{left:100%;top:0}
  466. .menus li li:hover li ul,.menus li li.sfHover li ul{top:-999em}
  467. .menus li li li:hover ul,.menus li li li.sfHover ul{left:100%;top:0}
  468. .sf-shadow ul{padding:0 8px 9px 0;-moz-border-radius-bottomleft:17px;-moz-border-radius-topright:17px;-webkit-border-top-right-radius:17px;-webkit-border-bottom-left-radius:17px}
  469. .menus .sf-shadow ul.sf-shadow-off{background:transparent}
  470. .menu-primary-wrap{padding:0;position:relative;height:32px;z-index:400;margin-top:10px}
  471. .menu-primary{}
  472. .menu-primary ul{min-width:160px}
  473. .menu-primary li a{color:#4E4D4D;padding:9px 15px;text-decoration:none;text-transform:uppercase;font:normal 11px Arial,Helvetica,Sans-serif;border-bottom:1px dashed #fff;background:#fff}
  474. .menu-primary li a:hover,.menu-primary li a:active,.menu-primary li a:focus,.menu-primary li:hover &gt; a,.menu-primary li.current-cat &gt; a,.menu-primary li.current_page_item &gt; a,.menu-primary li.current-menu-item &gt; a{color:#CD4436;outline:0;border-bottom:1px dashed #CD4436}
  475. .menu-primary li li:first-child{margin-top:5px}
  476. .menu-primary li li li:first-child{margin-top:0}
  477. .menu-primary li li a{color:#756857;text-transform:none;background:#EBEBE5;padding:6px 15px;margin:0;border:0;font-weight:normal}
  478. .menu-primary li li a:hover,.menu-primary li li a:active,.menu-primary li li a:focus,.menu-primary li li:hover &gt; a,.menu-primary li li.current-cat &gt; a,.menu-primary li li.current_page_item &gt; a,.menu-primary li li.current-menu-item &gt; a{color:#FFF;background:#756857;outline:0;border-bottom:0}
  479. .menu-primary a.sf-with-ul{padding-right:20px;min-width:1px}
  480. .menu-primary .sf-sub-indicator{position:absolute;display:block;overflow:hidden;right:0;top:0;padding:7px 10px 0 0}
  481. .menu-primary li li .sf-sub-indicator{padding:4px 10px 0 0}
  482. .wrap-menu-primary .sf-shadow ul{background:url(&#39;http://1.bp.blogspot.com/-kjEZpWAEsgE/TjhSrpISbgI/AAAAAAAAAX0/-CG4amMwFGE/s000/menu-primary-shadow.png&#39;) no-repeat bottom right}
  483. .menu-secondary-wrap{padding:0;position:relative;height:40px;z-index:300;background:#EBEBE5;-moz-border-radius:5px;-khtml-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}
  484. .menu-secondary{}
  485. .menu-secondary ul{min-width:160px}
  486. .menu-secondary li a{color:#5C544A;padding:14px 15px 11px 15px;text-decoration:none;text-transform:uppercase;font:bold 12px Arial,Helvetica,Sans-serif}
  487. .menu-secondary li a:hover,.menu-secondary li a:active,.menu-secondary li a:focus,.menu-secondary li:hover &gt; a,.menu-secondary li.current-cat &gt; a,.menu-secondary li.current_page_item &gt; a,.menu-secondary li.current-menu-item &gt; a{color:#FFF;background:#CD4436;outline:0}
  488. .menu-secondary li li a{color:#FFF;background:#E15850;padding:10px 15px;text-transform:none;margin:0;font-weight:normal;text-shadow:none}
  489. .menu-secondary li li a:hover,.menu-secondary li li a:active,.menu-secondary li li a:focus,.menu-secondary li li:hover &gt; a,.menu-secondary li li.current-cat &gt; a,.menu-secondary li li.current_page_item &gt; a,.menu-secondary li li.current-menu-item &gt; a{color:#FFF;background:#CD4436;outline:0;text-shadow:none}
  490. .menu-secondary a.sf-with-ul{padding-right:26px;min-width:1px}
  491. .menu-secondary .sf-sub-indicator{position:absolute;display:block;overflow:hidden;right:0;top:0;padding:12px 13px 0 0}
  492. .menu-secondary li li .sf-sub-indicator{padding:10px 13px 0 0}
  493. .wrap-menu-secondary .sf-shadow ul{background:url(&#39;http://1.bp.blogspot.com/-8I0tsURxpeY/TjhSrzOxjaI/AAAAAAAAAX4/SPn8f_OB1z4/s000/menu-secondary-shadow.png&#39;) no-repeat bottom right}
  494. /* Headings----------------------------------------------- */
  495. h2{}
  496. /* Posts-----------------------------------------------*/
  497. h2.date-header{margin:1.5em 0 .5em;display:none;}
  498. .wrapfullpost{}
  499. .post{margin-bottom:15px;border-bottom:2px solid #EBEBE5;}
  500. .post-title{color:#756857;margin:0 0 10px 0;padding:0;font-family:Arial,Helvetica,Sans-serif;font-size:24px;line-height:24px;font-weight:bold;}
  501. .post-title a,.post-title a:visited,.post-title strong{display:block;text-decoration:none;color:#756857;text-decoration:none;}
  502. .post-title strong,.post-title a:hover{color:#CD4436;text-decoration:none;}
  503. .post-body{margin:0px;padding:0px 10px 0px 0px;font-family:Arial, Helvetica, Sans-serif;font-size:12px;line-height: 20px;}
  504. .post-footer{margin:5px 0;}
  505. .comment-link{margin-$startSide:.6em}
  506. .post-body img{padding:6px;border:1px solid #CBCFD0;background:#EDECE5;}
  507. .postmeta-primary{color:#ABA795;font-size:11px;text-transform:uppercase;padding:0 0 5px 0}
  508. .postmeta-secondary{color:#ABA795;font-size:11px;padding:0 0 15px 0}
  509. .postmeta-primary a,.postmeta-secondary a{color:#756857}
  510. .postmeta-primary a:hover,.postmeta-secondary a:hover{color:#CD4436}
  511. .meta_date,.meta_categories{padding:3px 0 3px 0}
  512. .meta_author,.meta_comments,.meta_edit,.meta_tags{padding:3px 0 3px 10px;background-position:left center;background-repeat:no-repeat;background-image:url(http://1.bp.blogspot.com/-j8mOYpcW3Lo/TjhSsF8xY8I/AAAAAAAAAX8/8Itygb79Bjw/s000/meta-separator.png)}
  513. .readmore-wrap{margin-bottom:5px;float:right}
  514. a.readmore{color:#fff;background:#756857;padding:6px 14px 6px 20px;font-size:12px;line-height:12px;display:block;text-decoration:none}
  515. a.readmore:hover{color:#fff;background:#CD4436;text-decoration:none}
  516. .featuredposts{border:1px solid #ECECE6;width:623px;background:#FFF;margin:0 0 10px 0;height:426px;overflow:hidden}
  517. .fp-slides{}
  518. .fp-post{padding:13px}
  519. .fp-thumbnail{width:595px;height:300px;margin-bottom:10px;overflow:hidden}
  520. .fp-title{color:#756857;font:bold 16px Arial,Helvetica,Sans-serif;padding:0 0 4px 0;margin:0}
  521. .fp-title a{color:#756857;text-decoration:none}
  522. .fp-title a:hover{color:#CD4436;text-decoration:none}
  523. .fp-label{color:#756857;margin:15px 15px 0 15px;padding:0;text-transform:uppercase;font:bold 16px/16px Arial,Helvetica,Sans-serif}
  524. .fp-post p{color:#756857;padding:0;margin:0;font:12px/16px Arial,Helvetica,Sans-serif;height:32px;overflow:hidden}
  525. .fp-more,.fp-more:hover{color:#756857;font-weight:bold}
  526. .fp-nav{width:605px;padding:8px 10px;height:17px}
  527. .fp-pager a{background-image:url(http://4.bp.blogspot.com/-ZpcXvltag6E/TjhSsc6e9PI/AAAAAAAAAYA/LdAL5hdlLTE/s000/featured-pager.png);cursor:pointer;margin:3px 6px 0 0;padding:0;height:10px;width:10px;display:block;float:left;overflow:hidden;text-indent:-999px;background-position:0 0}
  528. .fp-pager a:hover,.fp-pager a.activeSlide{text-decoration:none;background-position:0 -110px}
  529. .fp-prev{float:right;margin-right:4px;width:15px;height:17px;opacity:0.7;background:url(http://2.bp.blogspot.com/-XxEg3_j1rB8/TjhSs-1yc0I/AAAAAAAAAYE/d-RaYgJE7f8/s000/featured-prev.png) top left no-repeat}
  530. .fp-prev:hover{opacity:1}
  531. .fp-prev:active{opacity:0.7}
  532. .fp-next{float:right;width:15px;height:17px;margin-left:4px;opacity:0.7;background:url(http://4.bp.blogspot.com/-vOWdUaxiD50/TjhSswkW4EI/AAAAAAAAAYI/WL5nxoJO6kQ/s000/featured-next.png) top left no-repeat}
  533. .fp-next:hover{opacity:1}
  534. .fp-next:active{opacity:0.7}
  535. /* Sidebar Content----------------------------------------------- */
  536. .sidebar{margin:0 0 10px 0;font-size:13px;color:#756857;}
  537. .sidebar a{text-decoration:none;color:#756857;}
  538. .sidebar a:hover{text-decoration:none;color:#CD4436;}
  539. .sidebar h2{color:#524B3F;background:#EBEBE5;font-size:16px;line-height:16px;font-family:Arial,Helvetica,Sans-serif;font-weight:bold;margin:0 0 10px 0;padding:10px 0 8px 10px;text-transform:uppercase;-moz-border-radius:8px;-khtml-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;}
  540. .sidebar ul{list-style-type:none;list-style:none;margin:0px;padding:0px;}
  541. .sidebar ul li{padding:6px 0 6px 14px;margin:0;background:url(http://2.bp.blogspot.com/-xWgKqZE1xis/TjhStJT49FI/AAAAAAAAAYM/ckWvetLy6wE/s000/widget-list.png) left 12px no-repeat;border-bottom:1px dotted #97978F;}
  542. .sidebar .widget{margin:0 0 15px 0;padding:0px;}
  543. .main .widget{margin:0 0 5px;padding:0 0 2px}
  544. .main .Blog{border-bottom-width:0}
  545. /* FOOTER ----------------------------------------------- */
  546. #footer-wrap{}
  547. #footer{margin-top:10px}
  548. #copyrights{color:#434141;background:#D2D2D2;text-align:center;padding:20px 0;-moz-border-radius:5px;-khtml-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;text-shadow:0 1px 0 #fff}
  549. #copyrights a{color:#434141}
  550. #copyrights a:hover{color:#434141;text-decoration:none}
  551. #credits{color:#7D7D7D;text-align:center;font-size:11px;padding:10px 0;text-shadow:0 1px 0 #fff}
  552. #credits a{color:#7D7D7D;text-decoration:none;}
  553. #credits a:hover{text-decoration:none;color:#7D7D7D}
  554. #footer-column-container {clear:both;padding:0px 0px 10px 0px;background:#fff;color:#756857;font-size:13px;}
  555. #footer-column-container a{text-decoration:none;color:#756857;}
  556. #footer-column-container a:hover{text-decoration:none;color:#CD4436;}
  557. #footer-column-container h2{color:#524B3F;background:#EBEBE5;font-size:16px;line-height:16px;font-family:Arial,Helvetica,Sans-serif;font-weight:bold;margin:0 0 10px 0;padding:10px 0 8px 10px;text-transform:uppercase;-moz-border-radius:8px;-khtml-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;}
  558. #footer-column-container ul{list-style-type:none;list-style:none;margin:0px;padding:0px;}
  559. #footer-column-container ul li{padding:6px 0 6px 14px;margin:0;background:url(http://2.bp.blogspot.com/-xWgKqZE1xis/TjhStJT49FI/AAAAAAAAAYM/ckWvetLy6wE/s000/widget-list.png) left 12px no-repeat;border-bottom:1px dotted #97978F;}
  560. #footer-column-container .widget{margin:0 0 15px 0;padding:0px;}
  561. .footer-column {padding: 4px 10px;}
  562. /* Search ----------------------------------------------- */
  563. #search{border:1px solid #E6E6E3;background:#FFF;height:30px;padding:0;text-align:left;overflow:hidden}
  564. #search #s{background:none;color:#575451;border:0;padding:4px;margin:3px 0 0 2px;float:left}
  565. #search .search-image{border:0;vertical-align:top;float:right;margin:6px 4px 0 2px}
  566. #search-wrap{width:300px;padding:15px 0}
  567. .topsearch #search{margin-top:12px}
  568. /* Comments----------------------------------------------- */
  569. #comments{padding:10px;background-color:#fff;border:2px solid #EBEBE5;}
  570. #comments h4{font-size:16px;font-weight:bold;margin:1em 0;color:$sidebarcolor}
  571. #comments-block3{padding:0;margin:0;float:left;overflow:hidden;position:relative;}
  572. #comment-name-url{width:465px;float:left}
  573. #comment-date{width:465px;float:left;margin-top:5px;font-size:10px;}
  574. #comment-header{float:left;padding:5px 0 40px 10px;margin:5px 0px 15px 0px;position:relative;background-color:#fff;border:2px solid #EBEBE5;}
  575. .avatar-image-container{background:url(http://3.bp.blogspot.com/-86YkjBVw08I/TjhStcHFbLI/AAAAAAAAAYQ/QeG8i9E4ukY/s000/comment-avatar.jpg);width:32px;height:32px;float:right;margin:5px 10px 5px 5px;border:1px solid #ddd;}
  576. .avatar-image-container img{width:32px;height:32px;}
  577. a.comments-autor-name{color:#000;font:normal bold 14px Arial,Tahoma,Verdana}
  578. a.says{color:#000;font:normal 14px Arial,Tahoma,Verdana}
  579. .says a:hover{text-decoration:none}
  580. .deleted-comment{font-style:italic;color:gray}
  581. #blog-pager-newer-link{float:$startSide}
  582. #blog-pager-older-link{float:$endSide}
  583. #blog-pager{text-align:center}
  584. .feed-links{clear:both;line-height:2.5em}
  585. /* Profile ----------------------------------------------- */
  586. .profile-img{float:$startSide;margin-top:0;margin-$endSide:5px;margin-bottom:5px;margin-$startSide:0;padding:4px;border:1px solid $bordercolor}
  587. .profile-data{margin:0;text-transform:uppercase;letter-spacing:.1em;font:$postfooterfont;color:$sidebarcolor;font-weight:bold;line-height:1.6em}
  588. .profile-datablock{margin:.5em 0 .5em}
  589. .profile-textblock{margin:0.5em 0;line-height:1.6em}
  590. .avatar-image-container{background:url(http://3.bp.blogspot.com/-86YkjBVw08I/TjhStcHFbLI/AAAAAAAAAYQ/QeG8i9E4ukY/s000/comment-avatar.jpg);width:32px;height:32px;float:right;margin:5px 10px 5px 5px;border:1px solid #ddd;}
  591. .avatar-image-container img{width:32px;height:32px;}
  592. .profile-link{font:$postfooterfont;text-transform:uppercase;letter-spacing:.1em}
  593. #navbar-iframe{height:0;visibility:hidden;display:none;}
  594. /* -- social connect widget -- */
  595. .social-connect-widget{background:#EBEBE5;border:1px solid #DCDCD4;padding:10px;-moz-border-radius:5px;-khtml-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}
  596. .social-connect-widget:hover{border:1px solid #D9D9D1;background:#F9F7F7}
  597. .social-connect-widget a{text-decoration:none;font-weight:bold;font-family:Arial,Helvetica,Sans-serif;color:#756857}
  598. .social-connect-widget a:hover{text-decoration:underline;color:#CD4436}
  599. .social-connect-widget img{vertical-align:middle;margin-right:5px}
  600. /* -- number page navigation -- */
  601. #blog-pager {padding:6px;background-color:#fff;font-size:11px;}
  602. .showpageArea{float:left}
  603. .showpageOf{margin:0 8px 0 0;padding:5px 8px;color:#232323;font:15px Arial,Verdana;background:transparent;}
  604. .showpagePoint{color:#ffffff;background:#756857;font:bold 15px Arial,Verdana;padding:5px 8px;margin:2px;text-decoration:none;}
  605. .showpageNum a{font:15px Arial,Verdana;padding:5px 8px;margin:0 4px;text-decoration:none;background:transparent;color:#232323;}
  606. .showpageNum a:hover{color:#ffffff;background:#d05043;}
  607. .showpage a{font:15px Arial,Verdana;padding:5px 8px;margin:0 4px;text-decoration:none;background:transparent;color:#232323;}
  608. .showpage a:hover{color:#ffffff;background:#d05043;}
  609. .showpageArea{margin:10px 0;font:15px Arial,Verdana;color:#232323;}
  610. .addthis_toolbox{padding:0px 0px 0px 0px;text-align:center}
  611. .addthis_toolbox .custom_images a{width:32px;height:32px;margin:0 4px 0 4px;padding:0}
  612. .addthis_toolbox .custom_images a:hover img{opacity:1}
  613. .addthis_toolbox .custom_images a img{opacity:0.85}
  614. #comment-form iframe{padding:5px;width:580px;height:275px;}
  615. .tabs-widget{list-style:none;list-style-type:none;margin:0 0 10px 0;padding:0;height:26px}
  616. .tabs-widget li{list-style:none;list-style-type:none;margin:0 0 0 4px;padding:0;float:left}
  617. .tabs-widget li:first-child{margin:0}
  618. .tabs-widget li a{color:#4E4840;background:#EBEBE5;padding:5px 16px;display:block;text-decoration:none;font:bold 12px Arial,Helvetica,Sans-serif}
  619. .tabs-widget li a:hover,.tabs-widget li a.tabs-widget-current{background:#756857;color:#FFF;text-decoration:none}
  620. .tabs-widget-content{}
  621. .tabviewsection{margin-top:10px;margin-bottom:10px;}
  622. #crosscol-wrapper{display:none;}
  623. .PopularPosts .item-title{font-weight:bold;padding-bottom:0.2em;text-shadow:0px 1px 0px #fff;}
  624. .PopularPosts .widget-content ul li{padding:0.7em 0;background:none}
  625. div.span-1,div.span-2,div.span-3,div.span-4,div.span-5,div.span-6,div.span-7,div.span-8,div.span-9,div.span-10,div.span-11,div.span-12,div.span-13,div.span-14,div.span-15,div.span-16,div.span-17,div.span-18,div.span-19,div.span-20,div.span-21,div.span-22,div.span-23,div.span-24{float:left;margin-right:10px}
  626. .span-1{width:30px}.span-2{width:70px}.span-3{width:110px}.span-4{width:150px}.span-5{width:190px}.span-6{width:230px}.span-7{width:270px}.span-8{width:310px}.span-9{width:350px}.span-10{width:390px}.span-11{width:430px}.span-12{width:470px}.span-13{width:510px}.span-14{width:550px}.span-15{width:590px}.span-16{width:630px}.span-17{width:670px}.span-18{width:710px}.span-19{width:750px}.span-20{width:790px}.span-21{width:830px}.span-22{width:870px}.span-23{width:910px}.span-24,div.span-24{width:950px;margin:0}input.span-1,textarea.span-1,input.span-2,textarea.span-2,input.span-3,textarea.span-3,input.span-4,textarea.span-4,input.span-5,textarea.span-5,input.span-6,textarea.span-6,input.span-7,textarea.span-7,input.span-8,textarea.span-8,input.span-9,textarea.span-9,input.span-10,textarea.span-10,input.span-11,textarea.span-11,input.span-12,textarea.span-12,input.span-13,textarea.span-13,input.span-14,textarea.span-14,input.span-15,textarea.span-15,input.span-16,textarea.span-16,input.span-17,textarea.span-17,input.span-18,textarea.span-18,input.span-19,textarea.span-19,input.span-20,textarea.span-20,input.span-21,textarea.span-21,input.span-22,textarea.span-22,input.span-23,textarea.span-23,input.span-24,textarea.span-24{border-left-width:1px!important;border-right-width:1px!important;padding-left:5px!important;padding-right:5px!important}input.span-1,textarea.span-1{width:18px!important}input.span-2,textarea.span-2{width:58px!important}input.span-3,textarea.span-3{width:98px!important}input.span-4,textarea.span-4{width:138px!important}input.span-5,textarea.span-5{width:178px!important}input.span-6,textarea.span-6{width:218px!important}input.span-7,textarea.span-7{width:258px!important}input.span-8,textarea.span-8{width:298px!important}input.span-9,textarea.span-9{width:338px!important}input.span-10,textarea.span-10{width:378px!important}input.span-11,textarea.span-11{width:418px!important}input.span-12,textarea.span-12{width:458px!important}input.span-13,textarea.span-13{width:498px!important}input.span-14,textarea.span-14{width:538px!important}input.span-15,textarea.span-15{width:578px!important}input.span-16,textarea.span-16{width:618px!important}input.span-17,textarea.span-17{width:658px!important}input.span-18,textarea.span-18{width:698px!important}input.span-19,textarea.span-19{width:738px!important}input.span-20,textarea.span-20{width:778px!important}input.span-21,textarea.span-21{width:818px!important}input.span-22,textarea.span-22{width:858px!important}input.span-23,textarea.span-23{width:898px!important}input.span-24,textarea.span-24{width:938px!important}.last{margin-right:0;padding-right:0}
  627. .last,div.last{margin-right:0}
  628. </style>
  629.  
  630. <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
  631. <style type='text/css'>
  632. #main-wrapper{padding-top:10px;}
  633. .post-body img {padding:0px;background:transparent;border:none;}
  634. </style>
  635. </b:if>
  636. <b:if cond='data:blog.pageType == &quot;item&quot;'>
  637. <style type='text/css'>
  638. #main-wrapper{padding-top:10px;}
  639. .post-body img {padding:0px;background:transparent;border:none;}
  640. </style>
  641. </b:if>
  642.  
  643. </head>
  644.  
  645. <body>
  646.  
  647. <div id='body-wrapper'><div id='outer-wrapper'><div id='wrap2'>
  648.  
  649. <!-- skip links for text browsers -->
  650. <span id='skiplinks' style='display:none;'>
  651. <a href='#main'>skip to main </a> |
  652. <a href='#sidebar'>skip to sidebar</a>
  653. </span>
  654.  
  655.  
  656. <div class='span-24'>
  657.  
  658. <div class='span-16'>
  659. <div class='menu-primary-wrap'>
  660. <b:section class='pagelistmenusblog' id='pagelistmenusblog' showaddelement='no'>
  661. <b:widget id='PageList14' locked='true' title='Páginas' type='PageList'>
  662. <b:widget-settings>
  663. <b:widget-setting name='pageListJson'><![CDATA[{'home': {'href': 'http://ingenierostenerife.blogspot.com/', 'title': 'Página principal', 'position': 0}, '5353139942754406292': {'href': 'http://ingenierostenerife.blogspot.com/p/aperturas.html', 'title': 'Aperturas', 'position': 1}, '6981315156509684607': {'href': 'http://ingenierostenerife.blogspot.com/p/proyectos.html', 'title': 'Proyectos', 'position': 2}, '2287136602746224627': {'href': 'http://ingenierostenerife.blogspot.com/p/peritaciones.html', 'title': 'Peritaciones', 'position': 3}, '9143097616303936581': {'href': 'http://ingenierostenerife.blogspot.com/p/contactar.html', 'title': 'Contactar', 'position': 4}, '5734887778797832893': {'href': 'http://ingenierostenerife.blogspot.com/p/ayudas.html', 'title': 'Ayudas', 'position': 5}}]]></b:widget-setting>
  664. <b:widget-setting name='homeTitle'>Página principal</b:widget-setting>
  665. </b:widget-settings>
  666. <b:includable id='main'>
  667. <div class='widget-content'>
  668. <ul class='menus menu-primary'>
  669. <b:loop values='data:links' var='link'>
  670. <b:if cond='data:link.isCurrentPage'>
  671. <li class='current_page_item'><a expr:href='data:link.href'><data:link.title/></a></li>
  672. <b:else/>
  673. <li><a expr:href='data:link.href'><data:link.title/></a></li>
  674. </b:if>
  675. </b:loop>
  676. </ul>
  677. <b:include name='quickedit'/>
  678. </div>
  679. </b:includable>
  680. </b:widget>
  681. </b:section>
  682. </div>
  683. </div>
  684.  
  685. <div class='span-8 last'>
  686. <div class='topsearch'>
  687. <div class='clerfix' id='search'>
  688. <form expr:action='data:blog.homepageUrl + &quot;search/&quot;' id='searchform' method='get'>
  689. <input id='s' name='q' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Search&quot;;}' onfocus='if (this.value == &quot;Search&quot;) {this.value = &quot;&quot;;}' type='text' value='Search'/>
  690. <input class='search-image' src='http://3.bp.blogspot.com/-Lu_FjLjE9c0/TjhStqkT0yI/AAAAAAAAAYU/8dX5cUvY9vs/s000/search.png' title='Search' type='image'/>
  691. </form>
  692. </div>
  693. </div>
  694. </div>
  695.  
  696. </div>
  697.  
  698. <div style='clear:both;'/>
  699.  
  700. <div id='header-wrapper'>
  701. <b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
  702. <b:widget id='Header1' locked='true' title='Ingenieros Tenerife (cabecera)' type='Header'>
  703. <b:widget-settings>
  704. <b:widget-setting name='displayUrl'/>
  705. <b:widget-setting name='displayHeight'>0</b:widget-setting>
  706. <b:widget-setting name='sectionWidth'>-1</b:widget-setting>
  707. <b:widget-setting name='useImage'>false</b:widget-setting>
  708. <b:widget-setting name='shrinkToFit'>false</b:widget-setting>
  709. <b:widget-setting name='imagePlacement'>BEHIND</b:widget-setting>
  710. <b:widget-setting name='displayWidth'>0</b:widget-setting>
  711. </b:widget-settings>
  712. <b:includable id='main'>
  713.  
  714. <b:if cond='data:useImage'>
  715. <b:if cond='data:imagePlacement == &quot;REPLACE&quot;'>
  716. <!--Show just the image, no text-->
  717. <div id='header-inner'>
  718. <a expr:href='data:blog.homepageUrl' style='display: block'>
  719. <img expr:alt='data:title' expr:height='data:height' expr:id='data:widget.instanceId + &quot;_headerimg&quot;' expr:src='data:sourceUrl' expr:width='data:width' style='display: block;padding-left:0px;padding-top:0px;'/>
  720. </a>
  721. </div>
  722. <b:else/>
  723. <!--
  724. Show image as background to text. You can't really calculate the width
  725. reliably in JS because margins are not taken into account by any of
  726. clientWidth, offsetWidth or scrollWidth, so we don't force a minimum
  727. width if the user is using shrink to fit.
  728. This results in a margin-width's worth of pixels being cropped. If the
  729. user is not using shrink to fit then we expand the header.
  730. -->
  731. <div expr:style='&quot;background-image: url(\&quot;&quot; + data:sourceUrl + &quot;\&quot;); &quot; + &quot;background-position: &quot; + data:backgroundPositionStyleStr + &quot;; &quot; + data:widthStyleStr + &quot;min-height: &quot; + data:height + &quot;px;&quot; + &quot;_height: &quot; + data:height + &quot;px;&quot; + &quot;background-repeat: no-repeat; &quot;' id='header-inner'>
  732. <div class='titlewrapper' style='background: transparent'>
  733. <h1 class='title' style='background: transparent; border-width: 0px'>
  734. <b:include name='title'/>
  735. </h1>
  736. </div>
  737. <b:include name='description'/>
  738. </div>
  739. </b:if>
  740. <b:else/>
  741. <!--No header image -->
  742. <div id='header-inner'>
  743. <div class='titlewrapper'>
  744. <h1 class='title'>
  745. <b:include name='title'/>
  746. </h1>
  747. </div>
  748. <b:include name='description'/>
  749. </div>
  750. </b:if>
  751. </b:includable>
  752. <b:includable id='description'>
  753. <div class='descriptionwrapper'>
  754. <p class='description'><span><data:description/></span></p>
  755. </div>
  756. </b:includable>
  757. <b:includable id='title'>
  758. <a expr:href='data:blog.homepageUrl'><data:title/></a>
  759. </b:includable>
  760. </b:widget>
  761. </b:section>
  762.  
  763. <b:section class='header' id='header2' maxwidgets='1' showaddelement='yes'>
  764. <b:widget id='HTML1' locked='false' title='' type='HTML'>
  765. <b:widget-settings>
  766. <b:widget-setting name='content'><![CDATA[<table align="center" border="0" width="103%"> <tbody> <tr> <td style="vertical-align:middle;"><a title="directorio de empresas" href="http://www.indizze.com"><img alt="directorio de empresas" src="http://www.indizze.com/logos/directorio-empresas.png" border="0" /></a></td> <td style="vertical-align:middle;"><img src="http://img203.imageshack.us/img203/7330/banderagranbretanaukrei.png" title="" alt="" /> <b>+34 661 018 074</b></td> </tr> </tbody> </table>]]></b:widget-setting>
  767. </b:widget-settings>
  768. <b:includable id='main'>
  769. <!-- only display title if it's non-empty -->
  770. <b:if cond='data:title != &quot;&quot;'>
  771. <h2 class='title'><data:title/></h2>
  772. </b:if>
  773. <div class='widget-content'>
  774. <data:content/>
  775. </div>
  776.  
  777. <b:include name='quickedit'/>
  778. </b:includable>
  779. </b:widget>
  780. </b:section>
  781. <div style='clear:both;'/>
  782.  
  783. </div>
  784. <div style='clear:both;'/>
  785.  
  786. <div class='span-24'>
  787. <div class='menu-secondary-wrap'>
  788.  
  789. <ul class='menus menu-secondary'>
  790.  
  791. <li><a expr:href='data:blog.homepageUrl'>Inicio</a></li>
  792.  
  793. <li><a href='#'>Servicios</a>
  794. <ul class='children'>
  795. <li><a href='http://ingenierostenerife.blogspot.com.es/p/aperturas.html'>Aperturas</a></li>
  796.  
  797. <li><a href='http://ingenierostenerife.blogspot.com.es/p/proyectos.html'>Proyectos</a></li>
  798. <li><a href='http://ingenierostenerife.blogspot.com.es/p/peritaciones.html'>Peritaciones</a></li>
  799. </ul>
  800. </li>
  801.  
  802. <li><a href='#'>Descargas</a>
  803. <ul class='children'>
  804. <li><a href='http://ingenierostenerife.blogspot.com.es/p/ayudas.html'>Impresos</a></li>
  805. <li><a href='http://ingenierostenerife.blogspot.com.es/p/ayudas.html'>Ayudas</a></li>
  806. <li><a href='#'>Software</a>
  807. <ul class='children'>
  808. <li><a href='#'>Visor PDF</a>
  809. </li>
  810. </ul>
  811. </li>
  812. </ul>
  813. </li>
  814.  
  815. <li><a href='#'>Redes Sociales</a>
  816. <ul class='children'>
  817. <li><a href='#'>Facebook</a>
  818. <ul class='Facebook'>
  819. <li><a href='https://www.facebook.com/ingenieros.tenerife'>Ingenieros Tenerife</a></li>
  820. <li><a href='https://www.facebook.com/PeritosTenerife'>Peritos Tenerife</a></li>
  821. <li><a href='http://www.facebook.com/peritos.tenerife.3'>Ingenieros Vehículos</a></li>
  822. </ul>
  823. </li>
  824. <li><a href='http://twitter.com/#!/ingenierostf'>Tweeter IngenierosTF</a></li>
  825. <li><a href='http://www.youtube.com/channel/UCGmjxlIs34tpK3lmqcddqVQ/feed'>YouTube</a></li>
  826. <li><a href='http://www.linkedin.com/pub/ingenieros-tenerife/3a/ab0/535'>Linkedin</a></li>
  827. </ul>
  828. </li>
  829.  
  830. <li><a href='http://ingenierostenerife.blogspot.com.es/p/contactar.html'>Aviso legal</a></li>
  831.  
  832. <li><a href='#'>Foros</a>
  833. <ul class='children'>
  834. <li><a href='http://www.friocalor.foro.st'>Foro Calor y Frío Luis Yanes</a></li>
  835. <li><a href='https://www.facebook.com/pages/Ingenieros-Tenerife/272346796112786?sk=app_197804576921355'>Foro en Facebook</a></li>
  836. <li><a href='http://ingenierosvehiculos.mforos.com/'>Foro en mi arroba</a></li>
  837. </ul>
  838. </li>
  839.  
  840. <li><a href='http://ingenierostenerife.blogspot.com.es/p/ayudas.html'>Enlaces</a></li>
  841. <li><a href='http://ingenierostenerife.blogspot.com.es/p/ayudas.html'>Wiki</a></li>
  842. <li><a href='http://ingenierostenerife.blogspot.com.es/p/contactar.html'>Contactar</a></li>
  843.  
  844. </ul>
  845. </div>
  846. </div>
  847. <div style='clear:both;'/>
  848.  
  849. <div id='content-wrapper'>
  850.  
  851. <div id='crosscol-wrapper' style='text-align:center'>
  852. <b:section class='crosscol' id='crosscol' showaddelement='yes'>
  853. <b:widget id='HTML10' locked='false' title='Opendi' type='HTML'>
  854. <b:widget-settings>
  855. <b:widget-setting name='content'>&lt;script id=&quot;sbbwidget_js&quot; type=&quot;text/javascript&quot; src=&quot;http://www.opendi.es/widget.js&quot;&gt;&lt;/script&gt;
  856. &lt;script type=&quot;text/javascript&quot;&gt;
  857. initWidget({
  858. id: &#39;1693105&#39;,
  859. showRatings: 1,
  860. maxRatings: 0
  861. });
  862. document.write(&#39;&lt;div id=&quot;sbbwidget_box&quot;&gt;&lt;/div&gt;&#39;);
  863. &lt;/script&gt;
  864. &lt;p style=&quot;width:263px;padding:5px;font-size:13px;border:1px solid #bcbcbc;background:#efefef;&quot;&gt;&lt;a href=&quot;http://www.opendi.eshttp://-.opendi.es/santa-cruz-de-tenerife/1693105.html&quot;&gt;Ingenieros Tenerife&lt;/a&gt; evaluado &lt;a href=&quot;http://www.opendi.eshttp://-.opendi.es/santa-cruz-de-tenerife/&quot;&gt;Opendi Santa Cruz de Tenerife&lt;/a&gt;&lt;/p&gt;</b:widget-setting>
  865. </b:widget-settings>
  866. <b:includable id='main'>
  867. <!-- only display title if it's non-empty -->
  868. <b:if cond='data:title != &quot;&quot;'>
  869. <h2 class='title'><data:title/></h2>
  870. </b:if>
  871. <div class='widget-content'>
  872. <data:content/>
  873. </div>
  874.  
  875. <b:include name='quickedit'/>
  876. </b:includable>
  877. </b:widget>
  878. </b:section>
  879. </div>
  880.  
  881. <div id='main-wrapper'>
  882.  
  883. <!-- Featured Content Slider Started -->
  884.  
  885. <b:if cond='data:blog.pageType != &quot;static_page&quot;'>
  886. <b:if cond='data:blog.pageType != &quot;item&quot;'>
  887.  
  888.  
  889. <div class='featuredposts clearfix'>
  890.  
  891. <div class='fp-slides'>
  892.  
  893. <div class='fp-post'>
  894. <div class='fp-thumbnail'><a href='featured-post-1-url-here'><img src='https://s19.postimg.org/9ch9x5tcj/Mozart-19_06_2013_0_28_49.png'/></a></div>
  895. <h3 class='fp-title'><a href='featured-post-1-url-here'>Proyectos Instalaciones Industriales y Obra Civil</a></h3>
  896. <!-- // imagen de arriba corresponde a cristal estallado 16.01.2014.16.00 // imagen de arriba corresponde andamios obra 24.07.2017.01.08 -->
  897. <p>Ingenieros Tenerife PROYECTOS Y PERITACIONES INDUSTRIALES.</p>
  898. </div>
  899.  
  900. <div class='fp-post'>
  901. <div class='fp-thumbnail'><a href='featured-post-2-url-here'><img src='https://s19.postimg.org/wmvfsu5sj/139666575322668640x427.jpg'/></a></div>
  902. <h3 class='fp-title'><a href='featured-post-2-url-here'>Aperturas negocios</a></h3>
  903. <!-- // imagen de arriba corresponde a vehículo ardiendo 16.01.2014.16.01 // imagen de arriba corresponde a placas estructuras metálicas 24.07.2017.01.08 -->
  904. <p>Ingenieros Tenerife PROYECTOS Y PERITACIONES INDUSTRIALES.</p>
  905. </div>
  906.  
  907. <div class='fp-post'>
  908. <div class='fp-thumbnail'><a href='featured-post-3-url-here'><img src='https://s19.postimg.org/6h46qapcj/Mozart-19_06_2013_0_28_28.png'/></a></div>
  909. <h3 class='fp-title'><a href='featured-post-3-url-here'>Ingeniería Vehículos</a></h3>
  910. <!-- // imagen de arriba corresponde a placas estructuras metálicas 16.01.2014.16.01 // imagen de arriba corresponde a soldador con gafas 24.07.2017.01.10 -->
  911. <p>Ingenieros Tenerife PROYECTOS Y PERITACIONES INDUSTRIALES.</p>
  912. </div>
  913.  
  914. <div class='fp-post'>
  915. <div class='fp-thumbnail'><a href='featured-post-4-url-here'><img src='https://s19.postimg.org/50so85mfn/119152476456387640x426.jpg'/></a></div>
  916. <h3 class='fp-title'><a href='featured-post-4-url-here'>Peritaciones Industriales</a></h3>
  917. <!-- // imagen de arriba corresponde a soldador con gafas 16.01.2014.16.02 // imagen de arriba corresponde a cristal estallado 24.07.2017.01.10 -->
  918. <p>Ingenieros Tenerife PROYECTOS Y PERITACIONES INDUSTRIALES.</p>
  919. </div>
  920.  
  921. <div class='fp-post'>
  922. <div class='fp-thumbnail'><a href='featured-post-5-url-here'><img src='https://s19.postimg.org/54mhoerwz/124076367612476640x414.jpg'/></a></div>
  923. <h3 class='fp-title'><a href='featured-post-5-url-here'>Reconstrucción accidentes de tráfico y de incendios</a></h3>
  924. <!-- // imagen de arriba corresponde a andamios obra 16.01.2014.16.02 // imagen de arriba corresponde incendio vehículo 24.07.2017.01.11 -->
  925. <p>Ingenieros Tenerife PROYECTOS Y PERITACIONES INDUSTRIALES.</p>
  926. </div>
  927.  
  928. </div>
  929.  
  930. <div class='fp-nav clearfix'>
  931. <span class='fp-pager'/>
  932. <a class='fp-next' href='#fp-next'/>
  933. <a class='fp-prev' href='#fp-prev'/>
  934. </div>
  935.  
  936. </div>
  937.  
  938.  
  939. </b:if></b:if>
  940.  
  941. <!-- Featured Content Slider End -->
  942.  
  943. <b:section class='main' id='main' showaddelement='no'>
  944. <b:widget id='Blog1' locked='true' title='Entradas del blog' type='Blog'>
  945. <b:widget-settings>
  946. <b:widget-setting name='showDateHeader'>true</b:widget-setting>
  947. <b:widget-setting name='style.textcolor'>#333333</b:widget-setting>
  948. <b:widget-setting name='showShareButtons'>true</b:widget-setting>
  949. <b:widget-setting name='showCommentLink'>true</b:widget-setting>
  950. <b:widget-setting name='style.urlcolor'>#333333</b:widget-setting>
  951. <b:widget-setting name='showAuthor'>true</b:widget-setting>
  952. <b:widget-setting name='style.linkcolor'>#cc6600</b:widget-setting>
  953. <b:widget-setting name='style.unittype'>TextAndImage</b:widget-setting>
  954. <b:widget-setting name='style.bgcolor'>#ffffff</b:widget-setting>
  955. <b:widget-setting name='showAuthorProfile'>false</b:widget-setting>
  956. <b:widget-setting name='style.layout'>1x1</b:widget-setting>
  957. <b:widget-setting name='showLabels'>true</b:widget-setting>
  958. <b:widget-setting name='showLocation'>true</b:widget-setting>
  959. <b:widget-setting name='showTimestamp'>true</b:widget-setting>
  960. <b:widget-setting name='postsPerAd'>1</b:widget-setting>
  961. <b:widget-setting name='showBacklinks'>false</b:widget-setting>
  962. <b:widget-setting name='style.bordercolor'>#ffffff</b:widget-setting>
  963. <b:widget-setting name='showInlineAds'>false</b:widget-setting>
  964. <b:widget-setting name='showReactions'>false</b:widget-setting>
  965. </b:widget-settings>
  966. <b:includable id='main' var='top'>
  967. <!-- posts -->
  968. <div class='blog-posts hfeed'>
  969.  
  970. <b:include data='top' name='status-message'/>
  971.  
  972. <data:defaultAdStart/>
  973. <b:loop values='data:posts' var='post'>
  974. <b:if cond='data:post.dateHeader'>
  975. <h2 class='date-header'><data:post.dateHeader/></h2>
  976. </b:if>
  977. <b:include data='post' name='post'/>
  978. <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
  979. <b:include data='post' name='comments'/>
  980. </b:if>
  981. <b:if cond='data:blog.pageType == &quot;item&quot;'>
  982. <b:include data='post' name='comments'/>
  983. </b:if>
  984. <b:if cond='data:post.includeAd'>
  985. <b:if cond='data:post.isFirstPost'>
  986. <data:defaultAdEnd/>
  987. <b:else/>
  988. <data:adEnd/>
  989. </b:if>
  990. <div class='inline-ad'>
  991. <data:adCode/>
  992. </div>
  993. <data:adStart/>
  994. </b:if>
  995. <b:if cond='data:post.trackLatency'>
  996. <data:post.latencyJs/>
  997. </b:if>
  998. </b:loop>
  999. <data:adEnd/>
  1000. </div>
  1001.  
  1002. <b:if cond='data:top.showStars'>
  1003. <script src='http://www.google.com/jsapi' type='text/javascript'/>
  1004. <script type='text/javascript'>
  1005. google.load(&quot;annotations&quot;, &quot;1&quot;, {&quot;locale&quot;: &quot;<data:top.languageCode/>&quot;});
  1006. function initialize() {
  1007. google.annotations.setApplicationId(<data:top.blogspotReviews/>);
  1008. google.annotations.createAll();
  1009. google.annotations.fetch();
  1010. }
  1011. google.setOnLoadCallback(initialize);
  1012. </script>
  1013. </b:if>
  1014.  
  1015. <b:if cond='data:blog.pageType != &quot;static_page&quot;'>
  1016. <b:if cond='data:blog.pageType != &quot;item&quot;'>
  1017. <!-- navigation -->
  1018. <b:include name='nextprev'/>
  1019.  
  1020. <!--Page Navigation Starts-->
  1021. <script type='text/javascript'>
  1022. var home_page=&quot;/&quot;;
  1023. var urlactivepage=location.href;
  1024. var postperpage=4;
  1025. var numshowpage=4;
  1026. var upPageWord =&#39;Previous&#39;;
  1027. var downPageWord =&#39;Next&#39;;
  1028. </script>
  1029.  
  1030. <script type='text/javascript'>
  1031. //<![CDATA[
  1032.  
  1033. eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('5 G;5 i;5 b;5 n;1f();x 1g(15){5 6=\'\';H=I(K/2);3(H==K-H){K=H*2+1}J=b-H;3(J<1)J=1;o=I(15/j)+1;3(o-1==15/j)o=o-1;L=J+K-1;3(L>o)L=o;6+="<4 e=\'1y\'>1z "+b+\' 1A \'+o+"</4>";5 16=I(b)-1;3(b>1){3(b==2){3(i=="w"){6+=\'<4 e="1B"><a f="\'+y+\'">\'+M+\'</a></4>\'}c{6+=\'<4 e="k"><a f="/r/s/\'+n+\'?&7-l=\'+j+\'">\'+M+\'</a></4>\'}}c{3(i=="w"){6+=\'<4 e="k"><a f="#" z="N(\'+16+\');A B">\'+M+\'</a></4>\'}c{6+=\'<4 e="k"><a f="#" z="O(\'+16+\');A B">\'+M+\'</a></4>\'}}}1h(5 g=J;g<=L;g++){3(b==g){6+=\'<4 e="1C">\'+g+\'</4>\'}c 3(g==1){3(i=="w"){6+=\'<4 e="k"><a f="\'+y+\'">1</a></4>\'}c{6+=\'<4 e="k"><a f="/r/s/\'+n+\'?&7-l=\'+j+\'">1</a></4>\'}}c{3(i=="w"){6+=\'<4 e="k"><a f="#" z="N(\'+g+\');A B">\'+g+\'</a></4>\'}c{6+=\'<4 e="k"><a f="#" z="O(\'+g+\');A B">\'+g+\'</a></4>\'}}}5 17=I(b)+1;3(b<o){3(i=="w"){6+=\'<4 e="k"><a f="#" z="N(\'+17+\');A B">\'+1i+\'</a></4>\'}c{6+=\'<4 e="k"><a f="#" z="O(\'+17+\');A B">\'+1i+\'</a></4>\'}}5 C=u.1D("C");5 18=u.1E("1F-1G");1h(5 p=0;p<C.P;p++){C[p].1j=6}3(C&&C.P>0){6=\'\'}3(18){18.1j=6}}x 1a(Q){5 R=Q.R;5 1k=I(R.1H$1I.$t,10);1g(1k)}x 1f(){5 d=m;3(d.9("/r/s/")!=-1){3(d.9("?S-7")!=-1){n=d.D(d.9("/r/s/")+14,d.9("?S-7"))}c{n=d.D(d.9("/r/s/")+14,d.9("?&7"))}}3(d.9("?q=")==-1&&d.9(".6")==-1){3(d.9("/r/s/")==-1){i="w";3(m.9("#E=")!=-1){b=m.D(m.9("#E=")+8,m.P)}c{b=1}u.1l("<h T=\\""+y+"U/V/W?7-l=1&X=Y-Z-h&11=1a\\"><\\/h>")}c{i="s";3(d.9("&7-l=")==-1){j=1J}3(m.9("#E=")!=-1){b=m.D(m.9("#E=")+8,m.P)}c{b=1}u.1l(\'<h T="\'+y+\'U/V/W/-/\'+n+\'?X=Y-Z-h&11=1a&7-l=1" ><\\/h>\')}}}x N(F){12=(F-1)*j;G=F;5 13=u.1m(\'1n\')[0];5 v=u.1o(\'h\');v.1p=\'1q/1r\';v.1s("T",y+"U/V/W?1t-1u="+12+"&7-l=1&X=Y-Z-h&11=1b");13.1v(v)}x O(F){12=(F-1)*j;G=F;5 13=u.1m(\'1n\')[0];5 v=u.1o(\'h\');v.1p=\'1q/1r\';v.1s("T",y+"U/V/W/-/"+n+"?1t-1u="+12+"&7-l=1&X=Y-Z-h&11=1b");13.1v(v)}x 1b(Q){1c=Q.R.1K[0];5 1w=1c.1x.$t.D(0,19)+1c.1x.$t.D(1L,1M);5 1d=1N(1w);3(i=="w"){5 1e="/r?S-7="+1d+"&7-l="+j+"#E="+G}c{5 1e="/r/s/"+n+"?S-7="+1d+"&7-l="+j+"#E="+G}1O.f=1e}',62,113,'|||if|span|var|html|max||indexOf||nomerhal|else|thisUrl|class|href|jj|script|jenis|postperpage|showpageNum|results|urlactivepage|lblname1|maksimal|||search|label||document|newInclude|page|function|home_page|onclick|return|false|pageArea|substring|PageNo|numberpage|nopage|nomerkiri|parseInt|mulai|numshowpage|akhir|upPageWord|redirectpage|redirectlabel|length|root|feed|updated|src|feeds|posts|summary|alt|json|in||callback|jsonstart|nBody||banyakdata|prevnomer|nextnomer|blogPager||hitungtotaldata|finddatepost|post|timestamp|alamat|halamanblogger|loophalaman|for|downPageWord|innerHTML|totaldata|write|getElementsByTagName|head|createElement|type|text|javascript|setAttribute|start|index|appendChild|timestamp1|published|showpageOf|Page|of|showpage|showpagePoint|getElementsByName|getElementById|blog|pager|openSearch|totalResults|20|entry|23|29|encodeURIComponent|location'.split('|'),0,{}))
  1034.  
  1035. //]]>
  1036. </script>
  1037. <!--Page Navigation Ends -->
  1038.  
  1039. </b:if>
  1040. </b:if>
  1041.  
  1042. </b:includable>
  1043. <b:includable id='backlinkDeleteIcon' var='backlink'>
  1044. <span expr:class='&quot;item-control &quot; + data:backlink.adminClass'>
  1045. <a expr:href='data:backlink.deleteUrl' expr:title='data:top.deleteBacklinkMsg'>
  1046. <img src='http://www.blogger.com/img/icon_delete13.gif'/>
  1047. </a>
  1048. </span>
  1049. </b:includable>
  1050. <b:includable id='backlinks' var='post'>
  1051. <a name='links'/><h4><data:post.backlinksLabel/></h4>
  1052. <b:if cond='data:post.numBacklinks != 0'>
  1053. <dl class='comments-block' id='comments-block'>
  1054. <b:loop values='data:post.backlinks' var='backlink'>
  1055. <div class='collapsed-backlink backlink-control'>
  1056. <dt class='comment-title'>
  1057. <span class='backlink-toggle-zippy'>&#160;</span>
  1058. <a expr:href='data:backlink.url' rel='nofollow'><data:backlink.title/></a>
  1059. <b:include data='backlink' name='backlinkDeleteIcon'/>
  1060. </dt>
  1061. <dd class='comment-body collapseable'>
  1062. <data:backlink.snippet/>
  1063. </dd>
  1064. <dd class='comment-footer collapseable'>
  1065. <span class='comment-author'><data:post.authorLabel/> <data:backlink.author/></span>
  1066. <span class='comment-timestamp'><data:post.timestampLabel/> <data:backlink.timestamp/></span>
  1067. </dd>
  1068. </div>
  1069. </b:loop>
  1070. </dl>
  1071. </b:if>
  1072. <p class='comment-footer'>
  1073. <a class='comment-link' expr:href='data:post.createLinkUrl' expr:id='data:widget.instanceId + &quot;_backlinks-create-link&quot;' target='_blank'><data:post.createLinkLabel/></a>
  1074. </p>
  1075. </b:includable>
  1076. <b:includable id='comment-form' var='post'>
  1077. <div id='comment-form'>
  1078. <a name='comment-form'/>
  1079. <h4 id='comment-post-message'><data:postCommentMsg/></h4>
  1080. <p><data:blogCommentMessage/></p>
  1081. <data:blogTeamBlogMessage/>
  1082. <a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
  1083. <iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410' id='comment-editor' name='comment-editor' src='' width='580'/>
  1084. <data:post.friendConnectJs/>
  1085. <data:post.cmtfpIframe/>
  1086. <script type='text/javascript'>
  1087. BLOG_CMT_createIframe(&#39;<data:post.appRpcRelayPath/>&#39;, &#39;<data:post.communityId/>&#39;);
  1088. </script>
  1089. </div>
  1090. </b:includable>
  1091. <b:includable id='commentDeleteIcon' var='comment'>
  1092. <span expr:class='&quot;item-control &quot; + data:comment.adminClass'>
  1093. <a expr:href='data:comment.deleteUrl' expr:title='data:top.deleteCommentMsg'>
  1094. <img src='http://www.blogger.com/img/icon_delete13.gif'/>
  1095. </a>
  1096. </span>
  1097. </b:includable>
  1098. <b:includable id='comment_count_picker' var='post'>
  1099. <b:if cond='data:post.commentSource == 1'>
  1100. <span class='cmt_count_iframe_holder' expr:data-count='data:post.numComments' expr:data-onclick='data:post.addCommentOnclick' expr:data-post-url='data:post.url' expr:data-url='data:post.url.canonical.http'>
  1101. </span>
  1102. <b:else/>
  1103. <a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>
  1104. <data:post.commentLabelFull/>:
  1105. </a>
  1106. </b:if>
  1107. </b:includable>
  1108. <b:includable id='comment_picker' var='post'>
  1109. <b:if cond='data:post.commentSource == 1'>
  1110. <b:include data='post' name='iframe_comments'/>
  1111. <b:elseif cond='data:post.showThreadedComments'/>
  1112. <b:include data='post' name='threaded_comments'/>
  1113. <b:else/>
  1114. <b:include data='post' name='comments'/>
  1115. </b:if>
  1116. </b:includable>
  1117. <b:includable id='comments' var='post'>
  1118. <div class='comments' id='comments'>
  1119. <a name='comments'/>
  1120. <b:if cond='data:post.allowComments'>
  1121. <h4>
  1122. <b:if cond='data:post.numComments == 1'>
  1123. 1 <data:commentLabel/>:
  1124. <b:else/>
  1125. <data:post.numComments/> <data:commentLabelPlural/>:
  1126. </b:if>
  1127. </h4>
  1128.  
  1129. <b:if cond='data:post.commentPagingRequired'>
  1130. <span class='paging-control-container'>
  1131. <a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'><data:post.oldestLinkText/></a>
  1132. &#160;
  1133. <a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'><data:post.olderLinkText/></a>
  1134. &#160;
  1135. <data:post.commentRangeText/>
  1136. &#160;
  1137. <a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'><data:post.newerLinkText/></a>
  1138. &#160;
  1139. <a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'><data:post.newestLinkText/></a>
  1140. </span>
  1141. </b:if>
  1142.  
  1143. <div id='comments-block3'>
  1144. <b:loop values='data:post.comments' var='comment'>
  1145.  
  1146. <div id='comment-header'>
  1147. <div expr:class='&quot;comment-author &quot; + data:comment.authorClass' expr:id='data:comment.anchorName'>
  1148.  
  1149. <div id='comment-profile-image'>
  1150. <b:if cond='data:blog.enabledCommentProfileImages'>
  1151. <data:comment.authorAvatarImage/>
  1152. </b:if>
  1153. </div>
  1154.  
  1155. <div id='comment-name-url'>
  1156. <a expr:name='data:comment.anchorName'/>
  1157. <b:if cond='data:comment.authorUrl'>
  1158. <a class='comments-autor-name' expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a>
  1159. <b:else/>
  1160. <a class='comments-autor-name'> <data:comment.author/></a>
  1161. </b:if>
  1162. <a class='says'>says:</a>
  1163. </div>
  1164.  
  1165. <div id='comment-date'>
  1166. <span class='comment-timestamp'>
  1167. <a class='comment-permalink'><data:comment.timestamp/></a>
  1168. <b:include data='comment' name='commentDeleteIcon'/>
  1169. </span>
  1170.  
  1171. <a expr:href='data:post.url + &quot;#comment-post-message&quot;' style='background-color:#eeeeee;border:1px solid #cccccc;color:#000000;text-decoration:none;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;padding:3px 10px;position:absolute;bottom:10px;left:12px;'>Reply</a>
  1172.  
  1173. </div>
  1174.  
  1175. <div id='comment-body'>
  1176. <b:if cond='data:comment.isDeleted'>
  1177. <span class='deleted-comment'><data:comment.body/></span>
  1178. <b:else/>
  1179. <div style='clear:both;'/>
  1180. <p class='comment-body' style='padding-right:10px;'><data:comment.body/></p>
  1181. </b:if>
  1182. </div>
  1183.  
  1184. </div>
  1185. </div>
  1186.  
  1187. </b:loop>
  1188. </div>
  1189.  
  1190. <b:if cond='data:post.commentPagingRequired'>
  1191. <span class='paging-control-container'>
  1192. <a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'>
  1193. <data:post.oldestLinkText/>
  1194. </a>
  1195. <a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'>
  1196. <data:post.olderLinkText/>
  1197. </a>
  1198. &#160;
  1199. <data:post.commentRangeText/>
  1200. &#160;
  1201. <a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'>
  1202. <data:post.newerLinkText/>
  1203. </a>
  1204. <a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'>
  1205. <data:post.newestLinkText/>
  1206. </a>
  1207. </span>
  1208. </b:if>
  1209.  
  1210. <p class='comment-footer'>
  1211. <b:if cond='data:post.embedCommentForm'>
  1212. <b:if cond='data:post.allowNewComments'>
  1213. <b:include data='post' name='comment-form'/>
  1214. <b:else/>
  1215. <data:post.noNewCommentsText/>
  1216. </b:if>
  1217. <b:else/>
  1218. <b:if cond='data:post.allowComments'>
  1219. <a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
  1220. </b:if>
  1221. </b:if>
  1222.  
  1223. </p>
  1224. </b:if>
  1225.  
  1226. <div id='backlinks-container'>
  1227. <div expr:id='data:widget.instanceId + &quot;_backlinks-container&quot;'>
  1228. <b:if cond='data:post.showBacklinks'>
  1229. <b:include data='post' name='backlinks'/>
  1230. </b:if>
  1231. </div>
  1232. </div>
  1233. </div>
  1234. </b:includable>
  1235. <b:includable id='feedLinks'>
  1236. <b:if cond='data:blog.pageType != &quot;item&quot;'> <!-- Blog feed links -->
  1237. <b:if cond='data:feedLinks'>
  1238. <div class='blog-feeds'>
  1239. <b:include data='feedLinks' name='feedLinksBody'/>
  1240. </div>
  1241. </b:if>
  1242.  
  1243. <b:else/> <!--Post feed links -->
  1244. <div class='post-feeds'>
  1245. <b:loop values='data:posts' var='post'>
  1246. <b:include cond='data:post.allowComments and data:post.feedLinks' data='post.feedLinks' name='feedLinksBody'/>
  1247. </b:loop>
  1248. </div>
  1249. </b:if>
  1250. </b:includable>
  1251. <b:includable id='feedLinksBody' var='links'>
  1252. <div class='feed-links'>
  1253. <data:feedLinksMsg/>
  1254. <b:loop values='data:links' var='f'>
  1255. <a class='feed-link' expr:href='data:f.url' expr:type='data:f.mimeType' target='_blank'><data:f.name/> (<data:f.feedType/>)</a>
  1256. </b:loop>
  1257. </div>
  1258. </b:includable>
  1259. <b:includable id='iframe_comments' var='post'>
  1260.  
  1261. <b:if cond='data:post.allowIframeComments'>
  1262. <script expr:src='data:post.iframeCommentSrc' type='text/javascript'/>
  1263. <div class='cmt_iframe_holder' expr:data-href='data:post.url.canonical' expr:data-viewtype='data:post.viewType'/>
  1264.  
  1265. <b:if cond='data:post.embedCommentForm == &quot;false&quot;'>
  1266. <a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
  1267. </b:if>
  1268. </b:if>
  1269. </b:includable>
  1270. <b:includable id='mobile-index-post' var='post'>
  1271. <b:if cond='data:post.dateHeader'>
  1272. <div class='mobile-index-date'>
  1273. <div class='date-header'>
  1274. <span><data:post.dateHeader/></span>
  1275. </div>
  1276. </div>
  1277. </b:if>
  1278.  
  1279. <div class='mobile-post-outer'>
  1280. <div class='mobile-index-title-outer'>
  1281. <h3 class='mobile-index-title entry-title'>
  1282. <a href='javascript:void(0)'><data:post.title/></a>
  1283. </h3>
  1284. </div>
  1285.  
  1286. <div>
  1287. <div class='mobile-index-arrow'>
  1288. <a href='javascript:void(0)'>&amp;rsaquo;</a>
  1289. </div>
  1290.  
  1291. <div class='mobile-post-contents'>
  1292. <b:if cond='data:post.thumbnailUrl'>
  1293. <div class='mobile-index-thumbnail'>
  1294. <div class='Image'>
  1295. <img expr:src='data:post.thumbnailUrl'/>
  1296. </div>
  1297. </div>
  1298. </b:if>
  1299.  
  1300. <div class='post-body'>
  1301. <b:if cond='data:post.snippet'><data:post.snippet/></b:if>
  1302. </div>
  1303. </div>
  1304. <div style='clear: both;'/>
  1305. </div>
  1306.  
  1307. <div class='mobile-index-comment'>
  1308. <b:if cond='data:blog.pageType != &quot;item&quot;'>
  1309. <b:if cond='data:blog.pageType != &quot;static_page&quot;'>
  1310. <b:if cond='data:post.allowComments'>
  1311. <b:if cond='data:post.numComments != 0'>
  1312. <a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if></a>
  1313. </b:if>
  1314. </b:if>
  1315. </b:if>
  1316. </b:if>
  1317. </div>
  1318. </div>
  1319. </b:includable>
  1320. <b:includable id='mobile-main' var='top'>
  1321. <!-- posts -->
  1322. <div class='blog-posts hfeed'>
  1323.  
  1324. <b:include data='top' name='status-message'/>
  1325.  
  1326. <b:if cond='data:blog.pageType == &quot;index&quot;'>
  1327. <b:loop values='data:posts' var='post'>
  1328. <b:include data='post' name='mobile-index-post'/>
  1329. </b:loop>
  1330. <b:else/>
  1331. <b:loop values='data:posts' var='post'>
  1332. <b:include data='post' name='mobile-post'/>
  1333. </b:loop>
  1334. </b:if>
  1335. </div>
  1336.  
  1337. <b:include name='mobile-nextprev'/>
  1338. </b:includable>
  1339. <b:includable id='mobile-nextprev'>
  1340. <div class='blog-pager' id='blog-pager'>
  1341. <b:if cond='data:newerPageUrl'>
  1342. <div class='mobile-link-button' id='blog-pager-newer-link'>
  1343. <a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-newer-link&quot;' expr:title='data:newerPageTitle'><data:newerPageTitle/></a>
  1344. </div>
  1345. </b:if>
  1346.  
  1347. <b:if cond='data:olderPageUrl'>
  1348. <div class='mobile-link-button' id='blog-pager-older-link'>
  1349. <a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'><data:olderPageTitle/></a>
  1350. </div>
  1351. </b:if>
  1352.  
  1353. <div class='mobile-link-button' id='blog-pager-home-link'>
  1354. <a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>
  1355. </div>
  1356.  
  1357. <div class='mobile-desktop-link'>
  1358. <a class='home-link' expr:href='data:desktopLinkUrl'><data:desktopLinkMsg/></a>
  1359. </div>
  1360.  
  1361. </div>
  1362. <div class='clear'/>
  1363. </b:includable>
  1364. <b:includable id='mobile-post' var='post'>
  1365. <div class='date-outer'>
  1366. <b:if cond='data:post.dateHeader'>
  1367. <h2 class='date-header'><span><data:post.dateHeader/></span></h2>
  1368. </b:if>
  1369. <div class='date-posts'>
  1370. <div class='post-outer'>
  1371.  
  1372. <div class='post hentry uncustomized-post-template' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>
  1373. <b:if cond='data:post.thumbnailUrl'>
  1374. <meta expr:content='data:post.thumbnailUrl' itemprop='image_url'/>
  1375. </b:if>
  1376. <meta expr:content='data:blog.blogId' itemprop='blogId'/>
  1377. <meta expr:content='data:post.id' itemprop='postId'/>
  1378.  
  1379. <a expr:name='data:post.id'/>
  1380. <b:if cond='data:post.title'>
  1381. <h3 class='post-title entry-title' itemprop='name'>
  1382. <b:if cond='data:post.link'>
  1383. <a expr:href='data:post.link'><data:post.title/></a>
  1384. <b:elseif cond='data:post.url and data:blog.url != data:post.url'/>
  1385. <a expr:href='data:post.url'><data:post.title/></a>
  1386. <b:else/>
  1387. <data:post.title/>
  1388. </b:if>
  1389. </h3>
  1390. </b:if>
  1391.  
  1392. <div class='post-header'>
  1393. <div class='post-header-line-1'/>
  1394. </div>
  1395.  
  1396. <div class='post-body entry-content' expr:id='&quot;post-body-&quot; + data:post.id' itemprop='articleBody'>
  1397. <data:post.body/>
  1398. <div style='clear: both;'/> <!-- clear for photos floats -->
  1399. </div>
  1400.  
  1401. <div class='post-footer'>
  1402. <div class='post-footer-line post-footer-line-1'>
  1403. <span class='post-author vcard'>
  1404. <b:if cond='data:top.showAuthor'>
  1405. <b:if cond='data:post.authorProfileUrl'>
  1406. <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  1407. <meta expr:content='data:post.authorProfileUrl' itemprop='url'/>
  1408. <a expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
  1409. <span itemprop='name'><data:post.author/></span>
  1410. </a>
  1411. </span>
  1412. <b:else/>
  1413. <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  1414. <span itemprop='name'><data:post.author/></span>
  1415. </span>
  1416. </b:if>
  1417. </b:if>
  1418. </span>
  1419.  
  1420. <span class='post-timestamp'>
  1421. <b:if cond='data:top.showTimestamp'>
  1422. <data:top.timestampLabel/>
  1423. <b:if cond='data:post.url'>
  1424. <meta expr:content='data:post.url.canonical' itemprop='url'/>
  1425. <a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601' itemprop='datePublished'><data:post.timestamp/></abbr></a>
  1426. </b:if>
  1427. </b:if>
  1428. </span>
  1429.  
  1430. <span class='post-comment-link'>
  1431. <b:include cond='data:blog.pageType not in {&quot;item&quot;,&quot;static_page&quot;} and data:post.allowComments' data='post' name='comment_count_picker'/>
  1432. </span>
  1433. </div>
  1434.  
  1435. <div class='post-footer-line post-footer-line-2'>
  1436. <b:if cond='data:top.showMobileShare'>
  1437. <div class='mobile-link-button goog-inline-block' id='mobile-share-button'>
  1438. <a href='javascript:void(0);'><data:shareMsg/></a>
  1439. </div>
  1440. </b:if>
  1441. <b:if cond='data:top.showDummy'>
  1442. <div class='goog-inline-block dummy-container'><data:post.dummyTag/></div>
  1443. </b:if>
  1444. </div>
  1445.  
  1446. </div>
  1447. </div>
  1448.  
  1449. <b:include cond='data:blog.pageType in {&quot;static_page&quot;,&quot;item&quot;}' data='post' name='comment_picker'/>
  1450. </div>
  1451. </div>
  1452. </div>
  1453. </b:includable>
  1454. <b:includable id='nextprev'>
  1455. <div class='blog-pager' id='blog-pager'>
  1456. <b:if cond='data:newerPageUrl'>
  1457. <span id='blog-pager-newer-link'>
  1458. <a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-newer-link&quot;' expr:title='data:newerPageTitle'><data:newerPageTitle/></a>
  1459. </span>
  1460. </b:if>
  1461.  
  1462. <b:if cond='data:olderPageUrl'>
  1463. <span id='blog-pager-older-link'>
  1464. <a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'><data:olderPageTitle/></a>
  1465. </span>
  1466. </b:if>
  1467.  
  1468. <b:if cond='data:blog.homepageUrl != data:blog.url'>
  1469. <a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>
  1470. <b:else/>
  1471. <b:if cond='data:newerPageUrl'>
  1472. <a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>
  1473. </b:if>
  1474. </b:if>
  1475.  
  1476. </div>
  1477. <div class='clear'/>
  1478. </b:includable>
  1479. <b:includable id='post' var='post'>
  1480. <div class='wrapfullpost'>
  1481. <div class='post hentry'>
  1482. <a expr:name='data:post.id'/>
  1483. <b:if cond='data:post.title'>
  1484. <h3 class='post-title entry-title'>
  1485. <b:if cond='data:post.link'>
  1486. <a expr:href='data:post.link'><data:post.title/></a>
  1487. <b:else/>
  1488. <b:if cond='data:post.url'>
  1489. <a expr:href='data:post.url'><data:post.title/></a>
  1490. <b:else/>
  1491. <data:post.title/>
  1492. </b:if>
  1493. </b:if>
  1494. </h3>
  1495. </b:if>
  1496.  
  1497. <div class='post-header-line-1'/>
  1498.  
  1499. <b:if cond='data:blog.pageType != &quot;static_page&quot;'>
  1500. <div class='postmeta-primary'>
  1501. <span class='meta_date'><data:post.timestamp/></span>
  1502. &amp;nbsp;<span class='meta_author'><data:post.author/></span>
  1503. &amp;nbsp;<span class='meta_comments'><b:if cond='data:post.allowComments'><a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 0'>No comments</b:if><b:if cond='data:post.numComments == 1'>1 comment</b:if><b:if cond='data:post.numComments &gt;= 2'><data:post.numComments/> comments</b:if></a></b:if></span>
  1504. </div>
  1505. </b:if>
  1506.  
  1507. <div class='post-body entry-content'>
  1508.  
  1509.  
  1510. <p>
  1511. <b:if cond='data:blog.pageType != &quot;static_page&quot;'>
  1512. <b:if cond='data:blog.pageType != &quot;item&quot;'>
  1513. <div expr:id='&quot;summary&quot; + data:post.id'><data:post.body/></div>
  1514. <script type='text/javascript'>createSummaryAndThumb(&quot;summary<data:post.id/>&quot;);</script>
  1515. </b:if>
  1516. </b:if>
  1517. <b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if>
  1518.  
  1519. <b:if cond='data:blog.pageType == &quot;static_page&quot;'><data:post.body/></b:if></p>
  1520.  
  1521.  
  1522. <b:if cond='data:blog.pageType == &quot;item&quot;'>
  1523. <div class='postmeta-secondary'>
  1524. <span class='meta_categories'>Posted in: <b:if cond='data:post.labels'><b:loop values='data:post.labels' var='label'><a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != &quot;true&quot;'>, </b:if></b:loop></b:if></span>
  1525. </div>
  1526. </b:if>
  1527.  
  1528. <b:if cond='data:blog.pageType != &quot;static_page&quot;'>
  1529. <b:if cond='data:blog.pageType != &quot;item&quot;'>
  1530. <div class='readmore-wrap'>
  1531. <a class='readmore' expr:href='data:post.url'>Read More</a>
  1532. </div>
  1533. </b:if>
  1534. </b:if>
  1535.  
  1536. <div style='clear: both;'/> <!-- clear for photos floats -->
  1537. </div>
  1538.  
  1539. <b:if cond='data:post.hasJumpLink'>
  1540. <div class='jump-link'>
  1541. <a expr:href='data:post.url + &quot;#more&quot;'><data:post.jumpText/></a>
  1542. </div>
  1543. </b:if>
  1544.  
  1545. <div class='post-footer'>
  1546.  
  1547. <div class='post-footer-line post-footer-line-'/>
  1548. <div class='post-footer-line post-footer-line-2'>
  1549.  
  1550. <!-- Feature added by BTemplates.com -->
  1551. <b:if cond='data:top.showReactions'>
  1552. <span class='reaction-buttons'>
  1553. <table border='0' cellpadding='0' cellspacing='0' width='100%'><tr>
  1554. <td class='reactions-label-cell' nowrap='nowrap' valign='top' width='1%'>
  1555. <span class='reactions-label'>
  1556. <data:top.reactionsLabel/></span>&#160;</td>
  1557. <td><iframe allowtransparency='true' class='reactions-iframe' expr:src='data:post.reactionsUrl' frameborder='0' name='reactions' scrolling='no'/></td>
  1558. </tr></table>
  1559. </span>
  1560. </b:if>
  1561. </div>
  1562. <div class='post-footer-line post-footer-line-3'>
  1563.  
  1564. <!-- Feature added by BTemplates.com -->
  1565. <b:include data='post' name='postQuickEdit'/>
  1566. </div></div>
  1567. </div>
  1568. </div>
  1569.  
  1570. <b:if cond='data:blog.pageType == &quot;item&quot;'>
  1571. <!-- navigation -->
  1572. <b:include name='nextprev'/>
  1573. </b:if>
  1574.  
  1575. </b:includable>
  1576. <b:includable id='postQuickEdit' var='post'>
  1577. <b:if cond='data:post.editUrl'>
  1578. <span expr:class='&quot;item-control &quot; + data:post.adminClass'>
  1579. <a expr:href='data:post.editUrl' expr:title='data:top.editPostMsg'>
  1580. <img alt='' class='icon-action' height='18' src='http://www.blogger.com/img/icon18_edit_allbkg.gif' width='18'/>
  1581. </a>
  1582. </span>
  1583. </b:if>
  1584. </b:includable>
  1585. <b:includable id='shareButtons' var='post'>
  1586. <b:if cond='data:post.sharePostUrl'>
  1587. <a class='share-button sb-email' expr:href='data:post.sharePostUrl + &quot;&amp;target=email&quot;' expr:title='data:top.emailThisMsg' target='_blank'>
  1588. <span class='share-button-link-text'><data:top.emailThisMsg/></span></a>
  1589. <a class='share-button sb-blog' expr:href='data:post.sharePostUrl + &quot;&amp;target=blog&quot;' expr:onclick='&quot;window.open(this.href, \&quot;_blank\&quot;, \&quot;height=270,width=475\&quot;); return false;&quot;' expr:title='data:top.blogThisMsg' target='_blank'>
  1590. <span class='share-button-link-text'><data:top.blogThisMsg/></span></a>
  1591. <a class='share-button sb-twitter' expr:href='data:post.sharePostUrl + &quot;&amp;target=twitter&quot;' expr:title='data:top.shareToTwitterMsg' target='_blank'>
  1592. <span class='share-button-link-text'><data:top.shareToTwitterMsg/></span></a>
  1593. <a class='share-button sb-facebook' expr:href='data:post.sharePostUrl + &quot;&amp;target=facebook&quot;' expr:onclick='&quot;window.open(this.href, \&quot;_blank\&quot;, \&quot;height=430,width=640\&quot;); return false;&quot;' expr:title='data:top.shareToFacebookMsg' target='_blank'>
  1594. <span class='share-button-link-text'><data:top.shareToFacebookMsg/></span></a>
  1595. <a class='share-button sb-buzz' expr:href='data:post.sharePostUrl + &quot;&amp;target=buzz&quot;' expr:onclick='&quot;window.open(this.href, \&quot;_blank\&quot;, \&quot;height=415,width=690\&quot;); return false;&quot;' expr:title='data:top.shareToBuzzMsg' target='_blank'>
  1596. <span class='share-button-link-text'><data:top.shareToBuzzMsg/></span></a>
  1597. </b:if>
  1598. </b:includable>
  1599. <b:includable id='status-message'>
  1600. <b:if cond='data:navMessage'>
  1601. <div class='status-msg-wrap'>
  1602. <div class='status-msg-body'>
  1603. <data:navMessage/>
  1604. </div>
  1605. <div class='status-msg-border'>
  1606. <div class='status-msg-bg'>
  1607. <div class='status-msg-hidden'><data:navMessage/></div>
  1608. </div>
  1609. </div>
  1610. </div>
  1611. <div style='clear: both;'/>
  1612. </b:if>
  1613. </b:includable>
  1614. <b:includable id='threaded-comment-form' var='post'>
  1615. <div class='comment-form'>
  1616. <a name='comment-form'/>
  1617. <b:if cond='data:mobile'>
  1618. <p><data:blogCommentMessage/></p>
  1619. <data:blogTeamBlogMessage/>
  1620. <a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
  1621. <iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' expr:height='data:cmtIframeInitialHeight' frameborder='0' id='comment-editor' name='comment-editor' src='' style='display: none' width='100%'/>
  1622. <b:else/>
  1623. <p><data:blogCommentMessage/></p>
  1624. <data:blogTeamBlogMessage/>
  1625. <a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
  1626. <iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' expr:height='data:cmtIframeInitialHeight' frameborder='0' id='comment-editor' name='comment-editor' src='' width='100%'/>
  1627. </b:if>
  1628. <data:post.cmtfpIframe/>
  1629. <script type='text/javascript'>
  1630. BLOG_CMT_createIframe(&#39;<data:post.appRpcRelayPath/>&#39;);
  1631. </script>
  1632. </div>
  1633. </b:includable>
  1634. <b:includable id='threaded_comment_js' var='post'>
  1635. <script async='async' expr:src='data:post.commentSrc' type='text/javascript'/>
  1636.  
  1637. <script type='text/javascript'>
  1638. (function() {
  1639. var items = <data:post.commentJso/>;
  1640. var msgs = <data:post.commentMsgs/>;
  1641. var config = <data:post.commentConfig/>;
  1642.  
  1643. // <![CDATA[
  1644. var cursor = null;
  1645. if (items && items.length > 0) {
  1646. cursor = parseInt(items[items.length - 1].timestamp) + 1;
  1647. }
  1648.  
  1649. var bodyFromEntry = function(entry) {
  1650. var text = (entry &&
  1651. ((entry.content && entry.content.$t) ||
  1652. (entry.summary && entry.summary.$t))) ||
  1653. '';
  1654. if (entry && entry.gd$extendedProperty) {
  1655. for (var k in entry.gd$extendedProperty) {
  1656. if (entry.gd$extendedProperty[k].name == 'blogger.contentRemoved') {
  1657. return '<span class="deleted-comment">' + text + '</span>';
  1658. }
  1659. }
  1660. }
  1661. return text;
  1662. }
  1663.  
  1664. var parse = function(data) {
  1665. cursor = null;
  1666. var comments = [];
  1667. if (data && data.feed && data.feed.entry) {
  1668. for (var i = 0, entry; entry = data.feed.entry[i]; i++) {
  1669. var comment = {};
  1670. // comment ID, parsed out of the original id format
  1671. var id = /blog-(\d+).post-(\d+)/.exec(entry.id.$t);
  1672. comment.id = id ? id[2] : null;
  1673. comment.body = bodyFromEntry(entry);
  1674. comment.timestamp = Date.parse(entry.published.$t) + '';
  1675. if (entry.author && entry.author.constructor === Array) {
  1676. var auth = entry.author[0];
  1677. if (auth) {
  1678. comment.author = {
  1679. name: (auth.name ? auth.name.$t : undefined),
  1680. profileUrl: (auth.uri ? auth.uri.$t : undefined),
  1681. avatarUrl: (auth.gd$image ? auth.gd$image.src : undefined)
  1682. };
  1683. }
  1684. }
  1685. if (entry.link) {
  1686. if (entry.link[2]) {
  1687. comment.link = comment.permalink = entry.link[2].href;
  1688. }
  1689. if (entry.link[3]) {
  1690. var pid = /.*comments\/default\/(\d+)\?.*/.exec(entry.link[3].href);
  1691. if (pid && pid[1]) {
  1692. comment.parentId = pid[1];
  1693. }
  1694. }
  1695. }
  1696. comment.deleteclass = 'item-control blog-admin';
  1697. if (entry.gd$extendedProperty) {
  1698. for (var k in entry.gd$extendedProperty) {
  1699. if (entry.gd$extendedProperty[k].name == 'blogger.itemClass') {
  1700. comment.deleteclass += ' ' + entry.gd$extendedProperty[k].value;
  1701. } else if (entry.gd$extendedProperty[k].name == 'blogger.displayTime') {
  1702. comment.displayTime = entry.gd$extendedProperty[k].value;
  1703. }
  1704. }
  1705. }
  1706. comments.push(comment);
  1707. }
  1708. }
  1709. return comments;
  1710. };
  1711.  
  1712. var paginator = function(callback) {
  1713. if (hasMore()) {
  1714. var url = config.feed + '?alt=json&v=2&orderby=published&reverse=false&max-results=50';
  1715. if (cursor) {
  1716. url += '&published-min=' + new Date(cursor).toISOString();
  1717. }
  1718. window.bloggercomments = function(data) {
  1719. var parsed = parse(data);
  1720. cursor = parsed.length < 50 ? null
  1721. : parseInt(parsed[parsed.length - 1].timestamp) + 1
  1722. callback(parsed);
  1723. window.bloggercomments = null;
  1724. }
  1725. url += '&callback=bloggercomments';
  1726. var script = document.createElement('script');
  1727. script.type = 'text/javascript';
  1728. script.src = url;
  1729. document.getElementsByTagName('head')[0].appendChild(script);
  1730. }
  1731. };
  1732. var hasMore = function() {
  1733. return !!cursor;
  1734. };
  1735. var getMeta = function(key, comment) {
  1736. if ('iswriter' == key) {
  1737. var matches = !!comment.author
  1738. && comment.author.name == config.authorName
  1739. && comment.author.profileUrl == config.authorUrl;
  1740. return matches ? 'true' : '';
  1741. } else if ('deletelink' == key) {
  1742. return config.baseUri + '/delete-comment.g?blogID='
  1743. + config.blogId + '&postID=' + comment.id;
  1744. } else if ('deleteclass' == key) {
  1745. return comment.deleteclass;
  1746. }
  1747. return '';
  1748. };
  1749.  
  1750. var replybox = null;
  1751. var replyUrlParts = null;
  1752. var replyParent = undefined;
  1753.  
  1754. var onReply = function(commentId, domId) {
  1755. if (replybox == null) {
  1756. // lazily cache replybox, and adjust to suit this style:
  1757. replybox = document.getElementById('comment-editor');
  1758. if (replybox != null) {
  1759. replybox.height = '250px';
  1760. replybox.style.display = 'block';
  1761. replyUrlParts = replybox.src.split('#');
  1762. }
  1763. }
  1764. if (replybox && (commentId !== replyParent)) {
  1765. replybox.src = '';
  1766. document.getElementById(domId).insertBefore(replybox, null);
  1767. replybox.src = replyUrlParts[0]
  1768. + (commentId ? '&parentID=' + commentId : '')
  1769. + '#' + replyUrlParts[1];
  1770. replyParent = commentId;
  1771. }
  1772. };
  1773.  
  1774. var hash = (window.location.hash || '#').substring(1);
  1775. var startThread, targetComment;
  1776. if (/^comment-form_/.test(hash)) {
  1777. startThread = hash.substring('comment-form_'.length);
  1778. } else if (/^c[0-9]+$/.test(hash)) {
  1779. targetComment = hash.substring(1);
  1780. }
  1781.  
  1782. // Configure commenting API:
  1783. var configJso = {
  1784. 'maxDepth': config.maxThreadDepth
  1785. };
  1786. var provider = {
  1787. 'id': config.postId,
  1788. 'data': items,
  1789. 'loadNext': paginator,
  1790. 'hasMore': hasMore,
  1791. 'getMeta': getMeta,
  1792. 'onReply': onReply,
  1793. 'rendered': true,
  1794. 'initComment': targetComment,
  1795. 'initReplyThread': startThread,
  1796. 'config': configJso,
  1797. 'messages': msgs
  1798. };
  1799.  
  1800. var render = function() {
  1801. if (window.goog && window.goog.comments) {
  1802. var holder = document.getElementById('comment-holder');
  1803. window.goog.comments.render(holder, provider);
  1804. }
  1805. };
  1806.  
  1807. // render now, or queue to render when library loads:
  1808. if (window.goog && window.goog.comments) {
  1809. render();
  1810. } else {
  1811. window.goog = window.goog || {};
  1812. window.goog.comments = window.goog.comments || {};
  1813. window.goog.comments.loadQueue = window.goog.comments.loadQueue || [];
  1814. window.goog.comments.loadQueue.push(render);
  1815. }
  1816. })();
  1817. // ]]>
  1818. </script>
  1819. </b:includable>
  1820. <b:includable id='threaded_comments' var='post'>
  1821. <div class='comments' id='comments'>
  1822. <a name='comments'/>
  1823. <h4><data:post.commentLabelFull/>:</h4>
  1824.  
  1825. <div class='comments-content'>
  1826. <b:include cond='data:post.embedCommentForm' data='post' name='threaded_comment_js'/>
  1827. <div id='comment-holder'>
  1828. <data:post.commentHtml/>
  1829. </div>
  1830. </div>
  1831.  
  1832. <p class='comment-footer'>
  1833. <b:if cond='data:post.allowNewComments'>
  1834. <b:include data='post' name='threaded-comment-form'/>
  1835. <b:else/>
  1836. <data:post.noNewCommentsText/>
  1837. </b:if>
  1838. </p>
  1839.  
  1840. <b:if cond='data:showCmtPopup'>
  1841. <div id='comment-popup'>
  1842. <iframe allowtransparency='true' frameborder='0' id='comment-actions' name='comment-actions' scrolling='no'>
  1843. </iframe>
  1844. </div>
  1845. </b:if>
  1846.  
  1847. <div id='backlinks-container'>
  1848. <div expr:id='data:widget.instanceId + &quot;_backlinks-container&quot;'>
  1849. <b:include cond='data:post.showBacklinks' data='post' name='backlinks'/>
  1850. </div>
  1851. </div>
  1852. </div>
  1853. </b:includable>
  1854. </b:widget>
  1855. <b:widget id='Followers1' locked='false' title='Seguidores' type='Followers'>
  1856. <b:widget-settings>
  1857. <b:widget-setting name='borderColorTransparent'>true</b:widget-setting>
  1858. <b:widget-setting name='useTemplateDefaultStyles'>true</b:widget-setting>
  1859. <b:widget-setting name='contentSecondaryTextColor'>#999999</b:widget-setting>
  1860. <b:widget-setting name='contentHeadlineColor'>#cc6600</b:widget-setting>
  1861. <b:widget-setting name='endcapTextColor'>#666666</b:widget-setting>
  1862. <b:widget-setting name='contentTextColor'>#666666</b:widget-setting>
  1863. <b:widget-setting name='contentSecondaryLinkColor'>#5588aa</b:widget-setting>
  1864. <b:widget-setting name='endcapLinkColor'>#5588aa</b:widget-setting>
  1865. <b:widget-setting name='contentLinkColor'>#5588aa</b:widget-setting>
  1866. </b:widget-settings>
  1867. <b:includable id='main'>
  1868. <b:if cond='data:title != &quot;&quot; and data:codeSnippet != &quot;&quot;'>
  1869. <h2 class='title'><data:title/></h2>
  1870. </b:if>
  1871. <div class='widget-content'>
  1872. <div expr:id='data:widget.instanceId + &quot;-wrapper&quot;'>
  1873. <b:if cond='data:codeSnippet != &quot;&quot;'>
  1874. <div style='margin-right:2px;'>
  1875. <data:codeSnippet/>
  1876. </div>
  1877. </b:if>
  1878. </div>
  1879. <b:include name='quickedit'/>
  1880. </div>
  1881. </b:includable>
  1882. </b:widget>
  1883. <b:widget id='BlogArchive1' locked='false' title='Archivo del blog' type='BlogArchive'>
  1884. <b:widget-settings>
  1885. <b:widget-setting name='showStyle'>HIERARCHY</b:widget-setting>
  1886. <b:widget-setting name='yearPattern'>yyyy</b:widget-setting>
  1887. <b:widget-setting name='showWeekEnd'>true</b:widget-setting>
  1888. <b:widget-setting name='monthPattern'>MMMM</b:widget-setting>
  1889. <b:widget-setting name='dayPattern'>MMM dd</b:widget-setting>
  1890. <b:widget-setting name='weekPattern'>MM/dd</b:widget-setting>
  1891. <b:widget-setting name='chronological'>false</b:widget-setting>
  1892. <b:widget-setting name='showPosts'>true</b:widget-setting>
  1893. <b:widget-setting name='frequency'>MONTHLY</b:widget-setting>
  1894. </b:widget-settings>
  1895. <b:includable id='main'>
  1896. <b:if cond='data:title != &quot;&quot;'>
  1897. <h2><data:title/></h2>
  1898. </b:if>
  1899. <div class='widget-content'>
  1900. <div id='ArchiveList'>
  1901. <div expr:id='data:widget.instanceId + &quot;_ArchiveList&quot;'>
  1902. <b:include cond='data:style == &quot;HIERARCHY&quot;' data='data' name='interval'/>
  1903. <b:include cond='data:style == &quot;FLAT&quot;' data='data' name='flat'/>
  1904. <b:include cond='data:style == &quot;MENU&quot;' data='data' name='menu'/>
  1905. </div>
  1906. </div>
  1907. <b:include name='quickedit'/>
  1908. </div>
  1909. </b:includable>
  1910. <b:includable id='flat' var='data'>
  1911. <ul class='flat'>
  1912. <b:loop values='data:data' var='i'>
  1913. <li class='archivedate'>
  1914. <a expr:href='data:i.url'><data:i.name/></a> (<data:i.post-count/>)
  1915. </li>
  1916. </b:loop>
  1917. </ul>
  1918. </b:includable>
  1919. <b:includable id='interval' var='intervalData'>
  1920. <b:loop values='data:intervalData' var='interval'>
  1921. <ul class='hierarchy'>
  1922. <li expr:class='&quot;archivedate &quot; + data:interval.expclass'>
  1923. <b:include cond='data:interval.toggleId' data='interval' name='toggle'/>
  1924. <a class='post-count-link' expr:href='data:interval.url'>
  1925. <data:interval.name/>
  1926. </a>
  1927. <span class='post-count' dir='ltr'>(<data:interval.post-count/>)</span>
  1928. <b:include cond='data:interval.data' data='interval.data' name='interval'/>
  1929. <b:include cond='data:interval.posts' data='interval.posts' name='posts'/>
  1930. </li>
  1931. </ul>
  1932. </b:loop>
  1933. </b:includable>
  1934. <b:includable id='menu' var='data'>
  1935. <select expr:id='data:widget.instanceId + &quot;_ArchiveMenu&quot;'>
  1936. <option value=''><data:title/></option>
  1937. <b:loop values='data:data' var='i'>
  1938. <option expr:value='data:i.url'><data:i.name/> (<data:i.post-count/>)</option>
  1939. </b:loop>
  1940. </select>
  1941. </b:includable>
  1942. <b:includable id='posts' var='posts'>
  1943. <ul class='posts'>
  1944. <b:loop values='data:posts' var='post'>
  1945. <li><a expr:href='data:post.url'><data:post.title/></a></li>
  1946. </b:loop>
  1947. </ul>
  1948. </b:includable>
  1949. <b:includable id='toggle' var='interval'>
  1950. <a class='toggle' href='javascript:void(0)'>
  1951. <span expr:class='&quot;zippy&quot; + (data:interval.expclass == &quot;expanded&quot; ? &quot; toggle-open&quot; : &quot;&quot;)'>
  1952. <b:if cond='data:interval.expclass == &quot;expanded&quot;'>
  1953. &#9660;&#160;
  1954. <b:elseif cond='data:blog.languageDirection == &quot;rtl&quot;'/>
  1955. &#9668;&#160;
  1956. <b:else/>
  1957. &#9658;&#160;
  1958. </b:if>
  1959. </span>
  1960. </a>
  1961. </b:includable>
  1962. </b:widget>
  1963. </b:section>
  1964. </div>
  1965.  
  1966. <div id='rsidebar-wrapper'>
  1967.  
  1968. <div class='social-connect-widget' style='margin-bottom:10px;'>
  1969. <a href='https://www.facebook.com/angel.torres.9'><img alt='Be Our Fan!' src='http://3.bp.blogspot.com/-s2OxBt8YOJE/TjhSwBPoweI/AAAAAAAAAY0/w6LnrTEOdgM/s000/social-connect-facebook.png' title='Be Our Fan'/></a><a href='https://www.facebook.com/ingenieros.tenerife'>Síguenos en Facebook</a>
  1970. </div>
  1971.  
  1972. <div style='clear:both;'/>
  1973.  
  1974. <div style='clear:both;'/>
  1975.  
  1976. <div class='tabviewsection'>
  1977.  
  1978. <script type='text/javascript'>
  1979. jQuery(document).ready(function($){
  1980. $(&quot;.tabs-widget-content-widget-themater_tabs-1432447472-id&quot;).hide();
  1981. $(&quot;ul.tabs-widget-widget-themater_tabs-1432447472-id li:first a&quot;).addClass(&quot;tabs-widget-current&quot;).show();
  1982. $(&quot;.tabs-widget-content-widget-themater_tabs-1432447472-id:first&quot;).show();
  1983.  
  1984. $(&quot;ul.tabs-widget-widget-themater_tabs-1432447472-id li a&quot;).click(function() {
  1985. $(&quot;ul.tabs-widget-widget-themater_tabs-1432447472-id li a&quot;).removeClass(&quot;tabs-widget-current a&quot;);
  1986. $(this).addClass(&quot;tabs-widget-current&quot;);
  1987. $(&quot;.tabs-widget-content-widget-themater_tabs-1432447472-id&quot;).hide();
  1988. var activeTab = $(this).attr(&quot;href&quot;);
  1989. $(activeTab).fadeIn();
  1990. return false;
  1991. });
  1992. });
  1993. </script>
  1994.  
  1995. <ul class='tabs-widget tabs-widget-widget-themater_tabs-1432447472-id'>
  1996. <li><a href='#widget-themater_tabs-1432447472-id1'>Popular</a></li>
  1997. <li><a href='#widget-themater_tabs-1432447472-id2'>Etiquetas</a></li>
  1998. <li><a href='#widget-themater_tabs-1432447472-id3'>Archivos Página</a></li>
  1999. </ul>
  2000.  
  2001. <div class='tabs-widget-content tabs-widget-content-widget-themater_tabs-1432447472-id' id='widget-themater_tabs-1432447472-id1'>
  2002. <b:section class='sidebar' id='sidebartab1' preferred='yes'>
  2003. <b:widget id='Text1' locked='false' title='Servicios y Contactar' type='Text'>
  2004. <b:widget-settings>
  2005. <b:widget-setting name='content'><![CDATA[<span style="font-weight: bold;">SERVICIOS</span><br /><br />Proyectos instalaciones industriales.<br />Proyectos de apertura .<br />Certificados técnicos.<br />Proyectos Contra Incendio.<br />Proyectos Climatización.<br />Proyectos bares y restaurantes.<br />Peritaciones incendios.<br />Peritaciones.<br />Tasaciones.<br />Ingeniería de Vehículos.<br />Peritaciones judiciales.<br />Proyectos de Gruas Torre Desmontables.<br />Certificados GT automontantes.<br />Reconstrucción accidentes de Tráfico.<br />Reformas de importancia vehículos.<br />Fichas técnicas reducidas.<br />Investigación incendios.<br />Asesoramiento técnico a emprendedores.<br /><br /><b>CONTACTAR</b><br /><br />móvil <b>661 018 074 <br />móvil 634 562 642<br /></b>fax 922 200 309<br /><a href="mailto:[email protected]">[email protected]</a>]]></b:widget-setting>
  2006. </b:widget-settings>
  2007. <b:includable id='main'>
  2008. <!-- only display title if it's non-empty -->
  2009. <b:if cond='data:title != &quot;&quot;'>
  2010. <h2 class='title'><data:title/></h2>
  2011. </b:if>
  2012. <div class='widget-content'>
  2013. <data:content/>
  2014. </div>
  2015.  
  2016. <b:include name='quickedit'/>
  2017. </b:includable>
  2018. </b:widget>
  2019. <b:widget id='HTML19' locked='false' title='Calendario Laboral Tenerife' type='HTML'>
  2020. <b:widget-settings>
  2021. <b:widget-setting name='content'><![CDATA[<iframe src="https://calendar.google.com/calendar/embed?src=tj0lb6qgkf3eb3bqb4brfkv3ak%40group.calendar.google.com&ctz=Atlantic%2FCanary" style="border: 0" width="400" height="300" frameborder="0" scrolling="no"></iframe>]]></b:widget-setting>
  2022. </b:widget-settings>
  2023. <b:includable id='main'>
  2024. <!-- only display title if it's non-empty -->
  2025. <b:if cond='data:title != &quot;&quot;'>
  2026. <h2 class='title'><data:title/></h2>
  2027. </b:if>
  2028. <div class='widget-content'>
  2029. <data:content/>
  2030. </div>
  2031.  
  2032. <b:include name='quickedit'/>
  2033. </b:includable>
  2034. </b:widget>
  2035. <b:widget id='Text2' locked='false' title='Presentación' type='Text'>
  2036. <b:widget-settings>
  2037. <b:widget-setting name='content'><![CDATA[Los trabajos realizados los ofrecemos en algunas imágenes.<br/><br/>Estamos presentes en directorios profesionales.<br/><br/>Disponemos de entornos de participación donde se pueden realizar consultas, aunque nuestra vocación es la de visita al cliente y sus instalaciones presentes o futuras.<br/><br/>No podíamos faltar en las redes sociales : Facebook y Twitter.<br/><br/>Tenemos una experiencia de más de 10 años en proyectos y peritaciones.<br/>]]></b:widget-setting>
  2038. </b:widget-settings>
  2039. <b:includable id='main'>
  2040. <!-- only display title if it's non-empty -->
  2041. <b:if cond='data:title != &quot;&quot;'>
  2042. <h2 class='title'><data:title/></h2>
  2043. </b:if>
  2044. <div class='widget-content'>
  2045. <data:content/>
  2046. </div>
  2047.  
  2048. <b:include name='quickedit'/>
  2049. </b:includable>
  2050. </b:widget>
  2051. <b:widget id='LinkList1' locked='false' title='Sitios Webs Amigos' type='LinkList'>
  2052. <b:widget-settings>
  2053. <b:widget-setting name='link-3'>http://www.gestoria-ara.es/servicios.htm</b:widget-setting>
  2054. <b:widget-setting name='sorting'>ALPHABETICAL</b:widget-setting>
  2055. <b:widget-setting name='link-4'>http://peritostenerife.wordpress.com/</b:widget-setting>
  2056. <b:widget-setting name='text-1'>Foro Ingeniería Vehículos en Facebook</b:widget-setting>
  2057. <b:widget-setting name='link-1'>https://www.facebook.com/pages/Ingenieros-Tenerife/272346796112786?sk=app_197804576921355</b:widget-setting>
  2058. <b:widget-setting name='text-0'>Foro calor frío de Luis Yanes Bello</b:widget-setting>
  2059. <b:widget-setting name='link-2'>http://ingenierosvehiculos.mforos.com/</b:widget-setting>
  2060. <b:widget-setting name='text-3'>Gestoría Ara</b:widget-setting>
  2061. <b:widget-setting name='link-0'>http://friocalor.mforos.com/</b:widget-setting>
  2062. <b:widget-setting name='text-2'>Foro Ingeniería Vehículos en Mi arroba</b:widget-setting>
  2063. <b:widget-setting name='text-4'>Peritos Tenerife en Wordpress</b:widget-setting>
  2064. </b:widget-settings>
  2065. <b:includable id='main'>
  2066.  
  2067. <b:if cond='data:title != &quot;&quot;'><h2><data:title/></h2></b:if>
  2068. <div class='widget-content'>
  2069. <ul>
  2070. <b:loop values='data:links' var='link'>
  2071. <li><a expr:href='data:link.target'><data:link.name/></a></li>
  2072. </b:loop>
  2073. </ul>
  2074. <b:include name='quickedit'/>
  2075. </div>
  2076. </b:includable>
  2077. </b:widget>
  2078. <b:widget id='HTML7' locked='false' title='Pepelista' type='HTML'>
  2079. <b:widget-settings>
  2080. <b:widget-setting name='content'>&lt;!-- // MAILCHIMP SUBSCRIBE CODE \\ --&gt;
  2081. &lt;a href=&quot;http://eepurl.com/sOIjn&quot;&gt;Suscríbase a la Newsletter especial (informal)&lt;/a&gt;
  2082. &lt;!-- \\ MAILCHIMP SUBSCRIBE CODE // --&gt;
  2083. &lt;blockquote&gt;&lt;/blockquote&gt;
  2084. &lt;script type=&quot;text/javascript&quot; language=&quot;JavaScript&quot; src=&quot;http://blogspot.us6.list-manage1.com/subscriber-count?b=26&amp;u=10253915-a342-4851-8fff-c61554fac158&amp;id=cdea5c9877&quot;&gt;&lt;/script&gt;</b:widget-setting>
  2085. </b:widget-settings>
  2086. <b:includable id='main'>
  2087. <!-- only display title if it's non-empty -->
  2088. <b:if cond='data:title != &quot;&quot;'>
  2089. <h2 class='title'><data:title/></h2>
  2090. </b:if>
  2091. <div class='widget-content'>
  2092. <data:content/>
  2093. </div>
  2094.  
  2095. <b:include name='quickedit'/>
  2096. </b:includable>
  2097. </b:widget>
  2098. <b:widget id='PopularPosts1' locked='false' title='Popular Posts' type='PopularPosts'>
  2099. <b:widget-settings>
  2100. <b:widget-setting name='numItemsToShow'>10</b:widget-setting>
  2101. <b:widget-setting name='showThumbnails'>true</b:widget-setting>
  2102. <b:widget-setting name='showSnippets'>true</b:widget-setting>
  2103. <b:widget-setting name='timeRange'>ALL_TIME</b:widget-setting>
  2104. </b:widget-settings>
  2105. <b:includable id='main'>
  2106. <b:if cond='data:title != &quot;&quot;'><h2><data:title/></h2></b:if>
  2107. <div class='widget-content popular-posts'>
  2108. <ul>
  2109. <b:loop values='data:posts' var='post'>
  2110. <li>
  2111. <b:if cond='!data:showThumbnails'>
  2112. <b:if cond='!data:showSnippets'>
  2113. <!-- (1) No snippet/thumbnail -->
  2114. <a expr:href='data:post.href'><data:post.title/></a>
  2115. <b:else/>
  2116. <!-- (2) Show only snippets -->
  2117. <div class='item-title'><a expr:href='data:post.href'><data:post.title/></a></div>
  2118. <div class='item-snippet'><data:post.snippet/></div>
  2119. </b:if>
  2120. <b:else/>
  2121. <!-- (3) Show only thumbnails or (4) Snippets and thumbnails. -->
  2122. <div expr:class='data:showSnippets ? &quot;item-content&quot; : &quot;item-thumbnail-only&quot;'>
  2123. <b:if cond='data:post.featuredImage.isResizable or data:post.thumbnail'>
  2124. <div class='item-thumbnail'>
  2125. <a expr:href='data:post.href' target='_blank'>
  2126. <b:with value='data:post.featuredImage.isResizable ? resizeImage(data:post.featuredImage, 72, &quot;1:1&quot;) : data:post.thumbnail' var='image'>
  2127. <img alt='' border='0' expr:src='data:image'/>
  2128. </b:with>
  2129. </a>
  2130. </div>
  2131. </b:if>
  2132. <div class='item-title'><a expr:href='data:post.href'><data:post.title/></a></div>
  2133. <b:if cond='data:showSnippets'>
  2134. <div class='item-snippet'><data:post.snippet/></div>
  2135. </b:if>
  2136. </div>
  2137. <div style='clear: both;'/>
  2138. </b:if>
  2139. </li>
  2140. </b:loop>
  2141. </ul>
  2142. <b:include name='quickedit'/>
  2143. </div>
  2144. </b:includable>
  2145. </b:widget>
  2146. <b:widget id='Stats1' locked='false' title='Páginas vistas en total' type='Stats'>
  2147. <b:widget-settings>
  2148. <b:widget-setting name='showGraphicalCounter'>false</b:widget-setting>
  2149. <b:widget-setting name='showAnimatedCounter'>false</b:widget-setting>
  2150. <b:widget-setting name='showSparkline'>true</b:widget-setting>
  2151. <b:widget-setting name='sparklineStyle'>BLACK_TRANSPARENT</b:widget-setting>
  2152. <b:widget-setting name='timeRange'>ALL_TIME</b:widget-setting>
  2153. </b:widget-settings>
  2154. <b:includable id='main'>
  2155. <b:if cond='data:title != &quot;&quot;'><h2><data:title/></h2></b:if>
  2156. <div class='widget-content'>
  2157. <!-- Content is going to be visible when data will be fetched from server. -->
  2158. <div expr:id='data:widget.instanceId + &quot;_content&quot;' style='display: none;'>
  2159. <!-- Counter and image will be injected later via AJAX call. -->
  2160. <b:if cond='data:showSparkline'>
  2161. <img alt='Sparkline' expr:id='data:widget.instanceId + &quot;_sparkline&quot;' height='30' width='75'/>
  2162. </b:if>
  2163. <span expr:class='&quot;counter-wrapper &quot; + (data:showGraphicalCounter ? &quot;graph-counter-wrapper&quot; : &quot;text-counter-wrapper&quot;)' expr:id='data:widget.instanceId + &quot;_totalCount&quot;'>
  2164. </span>
  2165. <b:include name='quickedit'/>
  2166. </div>
  2167. </div>
  2168. </b:includable>
  2169. </b:widget>
  2170. <b:widget id='LinkList3' locked='false' title='Webs Información técnica' type='LinkList'>
  2171. <b:widget-settings>
  2172. <b:widget-setting name='sorting'>ALPHABETICAL</b:widget-setting>
  2173. <b:widget-setting name='text-0'>Voltimum</b:widget-setting>
  2174. <b:widget-setting name='link-0'>http://www.voltimum.es/index.jsp?universe=home</b:widget-setting>
  2175. </b:widget-settings>
  2176. <b:includable id='main'>
  2177.  
  2178. <b:if cond='data:title != &quot;&quot;'><h2><data:title/></h2></b:if>
  2179. <div class='widget-content'>
  2180. <ul>
  2181. <b:loop values='data:links' var='link'>
  2182. <li><a expr:href='data:link.target'><data:link.name/></a></li>
  2183. </b:loop>
  2184. </ul>
  2185. <b:include name='quickedit'/>
  2186. </div>
  2187. </b:includable>
  2188. </b:widget>
  2189. <b:widget id='LinkList2' locked='false' title='Sitios Webs Amigos Diversos' type='LinkList'>
  2190. <b:widget-settings>
  2191. <b:widget-setting name='sorting'>NONE</b:widget-setting>
  2192. <b:widget-setting name='text-1'>Miguel Mollejo Sánchez</b:widget-setting>
  2193. <b:widget-setting name='link-1'>http://www.miguelms.com/</b:widget-setting>
  2194. <b:widget-setting name='text-0'>Integral Informática</b:widget-setting>
  2195. <b:widget-setting name='link-2'>http://fermu.com/</b:widget-setting>
  2196. <b:widget-setting name='link-0'>http://integralinformatica.com/</b:widget-setting>
  2197. <b:widget-setting name='text-2'>Fermu.com</b:widget-setting>
  2198. </b:widget-settings>
  2199. <b:includable id='main'>
  2200.  
  2201. <b:if cond='data:title != &quot;&quot;'><h2><data:title/></h2></b:if>
  2202. <div class='widget-content'>
  2203. <ul>
  2204. <b:loop values='data:links' var='link'>
  2205. <li><a expr:href='data:link.target'><data:link.name/></a></li>
  2206. </b:loop>
  2207. </ul>
  2208. <b:include name='quickedit'/>
  2209. </div>
  2210. </b:includable>
  2211. </b:widget>
  2212. <b:widget id='Label1' locked='false' title='Etiquetas' type='Label'>
  2213. <b:widget-settings>
  2214. <b:widget-setting name='sorting'>ALPHA</b:widget-setting>
  2215. <b:widget-setting name='display'>LIST</b:widget-setting>
  2216. <b:widget-setting name='selectedLabelsList'/>
  2217. <b:widget-setting name='showType'>ALL</b:widget-setting>
  2218. <b:widget-setting name='showFreqNumbers'>true</b:widget-setting>
  2219. </b:widget-settings>
  2220. <b:includable id='main'>
  2221. <b:if cond='data:title != &quot;&quot;'>
  2222. <h2><data:title/></h2>
  2223. </b:if>
  2224. <div expr:class='&quot;widget-content &quot; + data:display + &quot;-label-widget-content&quot;'>
  2225. <b:if cond='data:display == &quot;list&quot;'>
  2226. <ul>
  2227. <b:loop values='data:labels' var='label'>
  2228. <li>
  2229. <b:if cond='data:blog.url == data:label.url'>
  2230. <span expr:dir='data:blog.languageDirection'><data:label.name/></span>
  2231. <b:else/>
  2232. <a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
  2233. </b:if>
  2234. <b:if cond='data:showFreqNumbers'>
  2235. <span dir='ltr'>(<data:label.count/>)</span>
  2236. </b:if>
  2237. </li>
  2238. </b:loop>
  2239. </ul>
  2240. <b:else/>
  2241. <b:loop values='data:labels' var='label'>
  2242. <span expr:class='&quot;label-size label-size-&quot; + data:label.cssSize'>
  2243. <b:if cond='data:blog.url == data:label.url'>
  2244. <span expr:dir='data:blog.languageDirection'><data:label.name/></span>
  2245. <b:else/>
  2246. <a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
  2247. </b:if>
  2248. <b:if cond='data:showFreqNumbers'>
  2249. <span class='label-count' dir='ltr'>(<data:label.count/>)</span>
  2250. </b:if>
  2251. </span>
  2252. </b:loop>
  2253. </b:if>
  2254. <b:include name='quickedit'/>
  2255. </div>
  2256. </b:includable>
  2257. </b:widget>
  2258. <b:widget id='LinkList5' locked='false' title='ITV en Canarias (Inspección Técnica Vehículos)' type='LinkList'>
  2259. <b:includable id='main'>
  2260.  
  2261. <b:if cond='data:title != &quot;&quot;'><h2><data:title/></h2></b:if>
  2262. <div class='widget-content'>
  2263. <ul>
  2264. <b:loop values='data:links' var='link'>
  2265. <li><a expr:href='data:link.target'><data:link.name/></a></li>
  2266. </b:loop>
  2267. </ul>
  2268. <b:include name='quickedit'/>
  2269. </div>
  2270. </b:includable>
  2271. </b:widget>
  2272. <b:widget id='PlusOne1' locked='false' title='+1 Button' type='PlusOne'>
  2273. <b:widget-settings>
  2274. <b:widget-setting name='annotation'>BUBBLE</b:widget-setting>
  2275. <b:widget-setting name='size'>STANDARD</b:widget-setting>
  2276. </b:widget-settings>
  2277. <b:includable id='main'>
  2278.  
  2279. <div class='widget-content'>
  2280. <g:plusone expr:annotation='data:annotation' expr:href='data:blog.homepageUrl.canonical.http' expr:size='data:size' source='blogger:blog:plusone' width='250'/>
  2281.  
  2282. <script type='text/javascript'>
  2283. window.___gcfg = {&quot;lang&quot;: &quot;<data:language/>&quot;};
  2284. </script>
  2285. </div>
  2286.  
  2287. </b:includable>
  2288. </b:widget>
  2289. <b:widget id='LinkList4' locked='false' title='Webs oficiales' type='LinkList'>
  2290. <b:widget-settings>
  2291. <b:widget-setting name='text-10'>FEMETE - Federación Provincial de Empresarios del Metal y Nuevas Tecnologías de S/C de Tenerife</b:widget-setting>
  2292. <b:widget-setting name='link-17'>http://www.ull.es/</b:widget-setting>
  2293. <b:widget-setting name='link-16'>http://www.tecnicaindustrial.es/TIFrontal/home.aspx</b:widget-setting>
  2294. <b:widget-setting name='sorting'>ALPHABETICAL</b:widget-setting>
  2295. <b:widget-setting name='link-1'>http://www.revistabit.cl/revistabit/www/admintools/</b:widget-setting>
  2296. <b:widget-setting name='link-13'>http://www.gobiernodecanarias.org/industria/</b:widget-setting>
  2297. <b:widget-setting name='link-2'>http://www.gobcan.es/boc/</b:widget-setting>
  2298. <b:widget-setting name='link-12'>http://www.tecnicaindustrial.es/TIFrontal/home.aspx</b:widget-setting>
  2299. <b:widget-setting name='link-15'>http://www.minetur.gob.es/industria/es-ES/Paginas/Index.aspx</b:widget-setting>
  2300. <b:widget-setting name='link-0'>http://www.tecnifuego-aespi.org/index2.php</b:widget-setting>
  2301. <b:widget-setting name='link-14'>http://www.insht.es/portal/site/Insht/;VAPCOOKIE=VqGpQSTh8ZXXpQ1lHQ2WGKJtLMhTffPp8TcSvchB3Lv2QvHTsCJJ!979589572!-1905533209</b:widget-setting>
  2302. <b:widget-setting name='link-11'>http://www.fundacionlaboral.org/</b:widget-setting>
  2303. <b:widget-setting name='link-10'>http://www.femete.com.es/</b:widget-setting>
  2304. <b:widget-setting name='text-9'>Dirección General de Industria de Canarias</b:widget-setting>
  2305. <b:widget-setting name='link-9'>http://www.gobiernodecanarias.org/industria/</b:widget-setting>
  2306. <b:widget-setting name='text-8'>Consejo General de Colegios Oficiales de Peritos e Ingenieros Técnicos Industriales</b:widget-setting>
  2307. <b:widget-setting name='link-7'>http://www.coititf.es/</b:widget-setting>
  2308. <b:widget-setting name='link-8'>http://www.cogiti.es/Paginas/Ficha.aspx?IdMenu=A2238BD0-3048-4D9D-AB8C-C91C6FDFD475</b:widget-setting>
  2309. <b:widget-setting name='link-5'>http://www.boe.es/</b:widget-setting>
  2310. <b:widget-setting name='link-6'>http://www.cogitieuropa.org/</b:widget-setting>
  2311. <b:widget-setting name='link-3'>http://www.boplaspalmas.com/nbop2/</b:widget-setting>
  2312. <b:widget-setting name='link-4'>http://www.bopsantacruzdetenerife.org/</b:widget-setting>
  2313. <b:widget-setting name='text-1'>BIT - Revista Técnica de la Construcción</b:widget-setting>
  2314. <b:widget-setting name='text-0'>Asociación Española de Sociedades de Protección Contra Incendios</b:widget-setting>
  2315. <b:widget-setting name='text-3'>Boletín Oficial de la Provincia de las Palmas de Gran Canaria</b:widget-setting>
  2316. <b:widget-setting name='text-2'>Boletín Oficial de Canarias (B.O.C.)</b:widget-setting>
  2317. <b:widget-setting name='text-5'>Boletín Oficial del Estado (B.O.E.)</b:widget-setting>
  2318. <b:widget-setting name='text-4'>Boletín Oficial de la Provincia de Santa Cruz de Tenerife</b:widget-setting>
  2319. <b:widget-setting name='text-7'>Colegio Oficial de Ingenieros Técnicos Industriales de Santa Cruz de Tenerife</b:widget-setting>
  2320. <b:widget-setting name='text-6'>Cogiti Europa</b:widget-setting>
  2321. <b:widget-setting name='text-15'>Ministerio de Industria Estatal</b:widget-setting>
  2322. <b:widget-setting name='text-16'>Revista técnica industrial</b:widget-setting>
  2323. <b:widget-setting name='text-17'>Universidad de La Laguna</b:widget-setting>
  2324. <b:widget-setting name='text-11'>Fundación Laboral de la Construcción</b:widget-setting>
  2325. <b:widget-setting name='text-12'>Fundación Técnica Industrial</b:widget-setting>
  2326. <b:widget-setting name='text-13'>Industria Gobierno de Canarias</b:widget-setting>
  2327. <b:widget-setting name='text-14'>Instituto Nacional de Seguridad e Higiene en el Trabajo</b:widget-setting>
  2328. </b:widget-settings>
  2329. <b:includable id='main'>
  2330.  
  2331. <b:if cond='data:title != &quot;&quot;'><h2><data:title/></h2></b:if>
  2332. <div class='widget-content'>
  2333. <ul>
  2334. <b:loop values='data:links' var='link'>
  2335. <li><a expr:href='data:link.target'><data:link.name/></a></li>
  2336. </b:loop>
  2337. </ul>
  2338. <b:include name='quickedit'/>
  2339. </div>
  2340. </b:includable>
  2341. </b:widget>
  2342. <b:widget id='Subscribe1' locked='false' title='Suscribirse a' type='Subscribe'>
  2343. <b:includable id='main'>
  2344. <div style='white-space:nowrap'>
  2345. <b:if cond='data:title != &quot;&quot;'>
  2346. <h2 class='title'><data:title/></h2>
  2347. </b:if>
  2348. <div class='widget-content'>
  2349. <b:loop values='data:feeds' var='feed'>
  2350. <div expr:class='&quot;subscribe-wrapper subscribe-type-&quot; + data:feed.type'>
  2351.  
  2352. <div expr:class='&quot;subscribe expanded subscribe-type-&quot; + data:feed.type' expr:id='&quot;SW_READER_LIST_&quot; + data:widgetId + data:feed.type' style='display:none;'>
  2353. <div class='top'>
  2354. <span class='inner' expr:onclick='&quot;return(_SW_toggleReaderList(event, \&quot;&quot; + data:widgetId +data:feed.type + &quot;\&quot;));&quot;'>
  2355. <img class='subscribe-dropdown-arrow' expr:src='data:arrowDropdownImg'/>
  2356. <img align='absmiddle' alt='' border='0' class='feed-icon' expr:src='data:feedIconImg'/>
  2357. <data:feed.title/>
  2358. </span>
  2359.  
  2360. <div class='feed-reader-links'>
  2361. <a class='feed-reader-link' expr:href='&quot;https://www.netvibes.com/subscribe.php?url=&quot; + data:feed.encodedUrl' target='_blank'>
  2362. <img expr:src='data:imagePathBase + &quot;subscribe-netvibes.png&quot;'/>
  2363. </a>
  2364. <a class='feed-reader-link' expr:href='&quot;https://add.my.yahoo.com/content?url=&quot; + data:feed.encodedUrl' target='_blank'>
  2365. <img expr:src='data:imagePathBase + &quot;subscribe-yahoo.png&quot;'/>
  2366. </a>
  2367. <a class='feed-reader-link' expr:href='data:feed.url' target='_blank'>
  2368. <img align='absmiddle' class='feed-icon' expr:src='data:feedIconImg'/>
  2369. Atom
  2370. </a>
  2371. </div>
  2372.  
  2373. </div>
  2374. <div class='bottom'/>
  2375. </div>
  2376.  
  2377. <div class='subscribe' expr:id='&quot;SW_READER_LIST_CLOSED_&quot; + data:widgetId +data:feed.type' expr:onclick='&quot;return(_SW_toggleReaderList(event, \&quot;&quot; + data:widgetId +data:feed.type + &quot;\&quot;));&quot;'>
  2378. <div class='top'>
  2379. <span class='inner'>
  2380. <img class='subscribe-dropdown-arrow' expr:src='data:arrowDropdownImg'/>
  2381. <span expr:onclick='&quot;return(_SW_toggleReaderList(event, \&quot;&quot; + data:widgetId +data:feed.type + &quot;\&quot;));&quot;'>
  2382. <img align='absmiddle' alt='' border='0' class='feed-icon' expr:src='data:feedIconImg'/>
  2383. <data:feed.title/>
  2384. </span>
  2385. </span>
  2386. </div>
  2387. <div class='bottom'/>
  2388. </div>
  2389.  
  2390. </div>
  2391. </b:loop>
  2392.  
  2393. <div style='clear:both'/>
  2394.  
  2395. </div>
  2396. </div>
  2397.  
  2398. <b:include name='quickedit'/>
  2399. </b:includable>
  2400. </b:widget>
  2401. <b:widget id='Attribution1' locked='true' title='' type='Attribution'>
  2402. <b:widget-settings>
  2403. <b:widget-setting name='copyright'/>
  2404. </b:widget-settings>
  2405. <b:includable id='main'>
  2406. <div class='widget-content' style='text-align: center;'>
  2407. <b:if cond='data:attribution != &quot;&quot;'>
  2408. <data:attribution/>
  2409. </b:if>
  2410. </div>
  2411.  
  2412. <b:include name='quickedit'/>
  2413. </b:includable>
  2414. </b:widget>
  2415. <b:widget id='FollowByEmail1' locked='false' title='Follow by Email' type='FollowByEmail'>
  2416. <b:includable id='main'>
  2417. <b:if cond='data:title != &quot;&quot;'><h2 class='title'><data:title/></h2></b:if>
  2418. <div class='widget-content'>
  2419. <div class='follow-by-email-inner'>
  2420. <form action='https://feedburner.google.com/fb/a/mailverify' expr:onsubmit='&quot;window.open(\&quot;https://feedburner.google.com/fb/a/mailverify?uri=&quot; + data:feedPath + &quot;\&quot;, \&quot;popupwindow\&quot;, \&quot;scrollbars=yes,width=550,height=520\&quot;); return true&quot;' method='post' target='popupwindow'>
  2421. <table width='100%'>
  2422. <tr>
  2423. <td>
  2424. <input class='follow-by-email-address' name='email' placeholder='Email address...' type='text'/>
  2425. </td>
  2426. <td width='64px'>
  2427. <input class='follow-by-email-submit' type='submit' value='Submit'/>
  2428. </td>
  2429. </tr>
  2430. </table>
  2431. <input expr:value='data:feedPath' name='uri' type='hidden'/>
  2432. <input name='loc' type='hidden' value='en_US'/>
  2433. </form>
  2434. </div>
  2435. </div>
  2436. <span class='item-control blog-admin'>
  2437. <b:include name='quickedit'/>
  2438. </span>
  2439. </b:includable>
  2440. </b:widget>
  2441. <b:widget id='Translate1' locked='false' title='Translate' type='Translate'>
  2442. <b:widget-settings>
  2443. <b:widget-setting name='displayMode'>VERTICAL</b:widget-setting>
  2444. </b:widget-settings>
  2445. <b:includable id='main'>
  2446. <b:if cond='data:title != &quot;&quot;'>
  2447. <h2 class='title'><data:title/></h2>
  2448. </b:if>
  2449. <div id='google_translate_element'/>
  2450. <script>
  2451. function googleTranslateElementInit() {
  2452. new google.translate.TranslateElement({
  2453. pageLanguage: &#39;<data:pageLanguage/>&#39;,
  2454. autoDisplay: &#39;true&#39;,
  2455. layout: google.translate.TranslateElement.InlineLayout.<data:layout/>
  2456. }, &#39;google_translate_element&#39;);
  2457. }
  2458. </script>
  2459. <script src='//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit'/>
  2460. <b:include name='quickedit'/>
  2461. </b:includable>
  2462. </b:widget>
  2463. <b:widget id='Navbar1' locked='true' title='Barra de navegación' type='Navbar'>
  2464. <b:includable id='main'>&lt;script type=&quot;text/javascript&quot;&gt;
  2465. function setAttributeOnload(object, attribute, val) {
  2466. if(window.addEventListener) {
  2467. window.addEventListener(&#39;load&#39;,
  2468. function(){ object[attribute] = val; }, false);
  2469. } else {
  2470. window.attachEvent(&#39;onload&#39;, function(){ object[attribute] = val; });
  2471. }
  2472. }
  2473. &lt;/script&gt;
  2474. &lt;div id=&quot;navbar-iframe-container&quot;&gt;&lt;/div&gt;
  2475. &lt;script type=&quot;text/javascript&quot; src=&quot;https://apis.google.com/js/plusone.js&quot;&gt;&lt;/script&gt;
  2476. &lt;script type=&quot;text/javascript&quot;&gt;
  2477. gapi.load(&quot;gapi.iframes:gapi.iframes.style.bubble&quot;, function() {
  2478. if (gapi.iframes &amp;&amp; gapi.iframes.getContext) {
  2479. gapi.iframes.getContext().openChild({
  2480. url: &#39;https://www.blogger.com/navbar.g?targetBlogID\x3d9061847513712307164\x26blogName\x3dIngenieros+Tenerife\x26publishMode\x3dPUBLISH_MODE_BLOGSPOT\x26navbarType\x3dBLUE\x26layoutType\x3dLAYOUTS\x26searchRoot\x3dhttps://ingenierostenerife.blogspot.com/search\x26blogLocale\x3des\x26v\x3d2\x26homepageUrl\x3dhttps://ingenierostenerife.blogspot.com/\x26vt\x3d9010447151645527011&#39;,
  2481. where: document.getElementById(&quot;navbar-iframe-container&quot;),
  2482. id: &quot;navbar-iframe&quot;
  2483. });
  2484. }
  2485. });
  2486. &lt;/script&gt;&lt;script type=&quot;text/javascript&quot;&gt;
  2487. (function() {
  2488. var script = document.createElement(&#39;script&#39;);
  2489. script.type = &#39;text/javascript&#39;;
  2490. script.src = &#39;//pagead2.googlesyndication.com/pagead/js/google_top_exp.js&#39;;
  2491. var head = document.getElementsByTagName(&#39;head&#39;)[0];
  2492. if (head) {
  2493. head.appendChild(script);
  2494. }})();
  2495. &lt;/script&gt;
  2496. </b:includable>
  2497. </b:widget>
  2498. <b:widget id='HTML5' locked='false' title='LinkWithin' type='HTML'>
  2499. <b:widget-settings>
  2500. <b:widget-setting name='content'>Show Related Stories Under Each Post!</b:widget-setting>
  2501. </b:widget-settings>
  2502. <b:includable id='main'>
  2503. <!-- only display title if it's non-empty -->
  2504. <b:if cond='data:title != &quot;&quot;'>
  2505. <h2 class='title'><data:title/></h2>
  2506. </b:if>
  2507. <div class='widget-content'>
  2508. <data:content/>
  2509. </div>
  2510.  
  2511. <b:include name='quickedit'/>
  2512. </b:includable>
  2513. </b:widget>
  2514. </b:section>
  2515. </div>
  2516.  
  2517. <div class='tabs-widget-content tabs-widget-content-widget-themater_tabs-1432447472-id' id='widget-themater_tabs-1432447472-id2'>
  2518. <b:section class='sidebar' id='sidebartab2' preferred='yes'>
  2519. <b:widget id='Label3' locked='false' title='Labels' type='Label'>
  2520. <b:widget-settings>
  2521. <b:widget-setting name='sorting'>ALPHA</b:widget-setting>
  2522. <b:widget-setting name='display'>LIST</b:widget-setting>
  2523. <b:widget-setting name='selectedLabelsList'/>
  2524. <b:widget-setting name='showType'>ALL</b:widget-setting>
  2525. <b:widget-setting name='showFreqNumbers'>true</b:widget-setting>
  2526. </b:widget-settings>
  2527. <b:includable id='main'>
  2528. <b:if cond='data:title != &quot;&quot;'>
  2529. <h2><data:title/></h2>
  2530. </b:if>
  2531. <div expr:class='&quot;widget-content &quot; + data:display + &quot;-label-widget-content&quot;'>
  2532. <b:if cond='data:display == &quot;list&quot;'>
  2533. <ul>
  2534. <b:loop values='data:labels' var='label'>
  2535. <li>
  2536. <b:if cond='data:blog.url == data:label.url'>
  2537. <span expr:dir='data:blog.languageDirection'><data:label.name/></span>
  2538. <b:else/>
  2539. <a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
  2540. </b:if>
  2541. <b:if cond='data:showFreqNumbers'>
  2542. <span dir='ltr'>(<data:label.count/>)</span>
  2543. </b:if>
  2544. </li>
  2545. </b:loop>
  2546. </ul>
  2547. <b:else/>
  2548. <b:loop values='data:labels' var='label'>
  2549. <span expr:class='&quot;label-size label-size-&quot; + data:label.cssSize'>
  2550. <b:if cond='data:blog.url == data:label.url'>
  2551. <span expr:dir='data:blog.languageDirection'><data:label.name/></span>
  2552. <b:else/>
  2553. <a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
  2554. </b:if>
  2555. <b:if cond='data:showFreqNumbers'>
  2556. <span class='label-count' dir='ltr'>(<data:label.count/>)</span>
  2557. </b:if>
  2558. </span>
  2559. </b:loop>
  2560. </b:if>
  2561. <b:include name='quickedit'/>
  2562. </div>
  2563. </b:includable>
  2564. </b:widget>
  2565. </b:section>
  2566. </div>
  2567.  
  2568. <div class='tabs-widget-content tabs-widget-content-widget-themater_tabs-1432447472-id' id='widget-themater_tabs-1432447472-id3'>
  2569. <b:section class='sidebar' id='sidebartab3' preferred='yes'>
  2570. <b:widget id='BlogArchive2' locked='false' title='Blog Archive' type='BlogArchive'>
  2571. <b:widget-settings>
  2572. <b:widget-setting name='showStyle'>HIERARCHY</b:widget-setting>
  2573. <b:widget-setting name='yearPattern'>yyyy</b:widget-setting>
  2574. <b:widget-setting name='showWeekEnd'>true</b:widget-setting>
  2575. <b:widget-setting name='monthPattern'>MMMM</b:widget-setting>
  2576. <b:widget-setting name='dayPattern'>MMM dd</b:widget-setting>
  2577. <b:widget-setting name='weekPattern'>MM/dd</b:widget-setting>
  2578. <b:widget-setting name='chronological'>false</b:widget-setting>
  2579. <b:widget-setting name='showPosts'>true</b:widget-setting>
  2580. <b:widget-setting name='frequency'>MONTHLY</b:widget-setting>
  2581. </b:widget-settings>
  2582. <b:includable id='main'>
  2583. <b:if cond='data:title != &quot;&quot;'>
  2584. <h2><data:title/></h2>
  2585. </b:if>
  2586. <div class='widget-content'>
  2587. <div id='ArchiveList'>
  2588. <div expr:id='data:widget.instanceId + &quot;_ArchiveList&quot;'>
  2589. <b:include cond='data:style == &quot;HIERARCHY&quot;' data='data' name='interval'/>
  2590. <b:include cond='data:style == &quot;FLAT&quot;' data='data' name='flat'/>
  2591. <b:include cond='data:style == &quot;MENU&quot;' data='data' name='menu'/>
  2592. </div>
  2593. </div>
  2594. <b:include name='quickedit'/>
  2595. </div>
  2596. </b:includable>
  2597. <b:includable id='flat' var='data'>
  2598. <ul class='flat'>
  2599. <b:loop values='data:data' var='i'>
  2600. <li class='archivedate'>
  2601. <a expr:href='data:i.url'><data:i.name/></a> (<data:i.post-count/>)
  2602. </li>
  2603. </b:loop>
  2604. </ul>
  2605. </b:includable>
  2606. <b:includable id='interval' var='intervalData'>
  2607. <b:loop values='data:intervalData' var='interval'>
  2608. <ul class='hierarchy'>
  2609. <li expr:class='&quot;archivedate &quot; + data:interval.expclass'>
  2610. <b:include cond='data:interval.toggleId' data='interval' name='toggle'/>
  2611. <a class='post-count-link' expr:href='data:interval.url'>
  2612. <data:interval.name/>
  2613. </a>
  2614. <span class='post-count' dir='ltr'>(<data:interval.post-count/>)</span>
  2615. <b:include cond='data:interval.data' data='interval.data' name='interval'/>
  2616. <b:include cond='data:interval.posts' data='interval.posts' name='posts'/>
  2617. </li>
  2618. </ul>
  2619. </b:loop>
  2620. </b:includable>
  2621. <b:includable id='menu' var='data'>
  2622. <select expr:id='data:widget.instanceId + &quot;_ArchiveMenu&quot;'>
  2623. <option value=''><data:title/></option>
  2624. <b:loop values='data:data' var='i'>
  2625. <option expr:value='data:i.url'><data:i.name/> (<data:i.post-count/>)</option>
  2626. </b:loop>
  2627. </select>
  2628. </b:includable>
  2629. <b:includable id='posts' var='posts'>
  2630. <ul class='posts'>
  2631. <b:loop values='data:posts' var='post'>
  2632. <li><a expr:href='data:post.url'><data:post.title/></a></li>
  2633. </b:loop>
  2634. </ul>
  2635. </b:includable>
  2636. <b:includable id='toggle' var='interval'>
  2637. <a class='toggle' href='javascript:void(0)'>
  2638. <span expr:class='&quot;zippy&quot; + (data:interval.expclass == &quot;expanded&quot; ? &quot; toggle-open&quot; : &quot;&quot;)'>
  2639. <b:if cond='data:interval.expclass == &quot;expanded&quot;'>
  2640. &#9660;&#160;
  2641. <b:elseif cond='data:blog.languageDirection == &quot;rtl&quot;'/>
  2642. &#9668;&#160;
  2643. <b:else/>
  2644. &#9658;&#160;
  2645. </b:if>
  2646. </span>
  2647. </a>
  2648. </b:includable>
  2649. </b:widget>
  2650. </b:section>
  2651. </div>
  2652.  
  2653. </div>
  2654.  
  2655. <div style='height:5px;clear:both;'/>
  2656.  
  2657.  
  2658. <b:section class='sidebar' id='sidebarright' preferred='yes'/>
  2659.  
  2660. <p/></div>
  2661.  
  2662. <!-- spacer for skins that want sidebar and main to be the same height-->
  2663. <div class='clear'>&#160;</div>
  2664.  
  2665. </div> <!-- end content-wrapper -->
  2666.  
  2667. <div class='span-24'>
  2668. <div id='footer-column-container'>
  2669. <div id='footer2' style='width: 33%; float: left; margin:0; text-align: left;'>
  2670. <b:section class='footer-column' id='col1' preferred='yes' style='float:left;'>
  2671. <b:widget id='HTML16' locked='false' title='' type='HTML'>
  2672. <b:widget-settings>
  2673. <b:widget-setting name='content'><![CDATA[<script type="text/javascript" src="http://admarket.entireweb.com/ac/?ci=192&url=http%3A%2F%2Fingenierostenerife.blogspot.com.es"></script>]]></b:widget-setting>
  2674. </b:widget-settings>
  2675. <b:includable id='main'>
  2676. <!-- only display title if it's non-empty -->
  2677. <b:if cond='data:title != &quot;&quot;'>
  2678. <h2 class='title'><data:title/></h2>
  2679. </b:if>
  2680. <div class='widget-content'>
  2681. <data:content/>
  2682. </div>
  2683.  
  2684. <b:include name='quickedit'/>
  2685. </b:includable>
  2686. </b:widget>
  2687. <b:widget id='HTML11' locked='false' title='Directorio Hoteles' type='HTML'>
  2688. <b:widget-settings>
  2689. <b:widget-setting name='content'><![CDATA[<a href='http://www.travelideas.es/directorio-hoteles'> Directorio Hoteles</a>]]></b:widget-setting>
  2690. </b:widget-settings>
  2691. <b:includable id='main'>
  2692. <!-- only display title if it's non-empty -->
  2693. <b:if cond='data:title != &quot;&quot;'>
  2694. <h2 class='title'><data:title/></h2>
  2695. </b:if>
  2696. <div class='widget-content'>
  2697. <data:content/>
  2698. </div>
  2699.  
  2700. <b:include name='quickedit'/>
  2701. </b:includable>
  2702. </b:widget>
  2703. <b:widget id='HTML8' locked='false' title='Costasur' type='HTML'>
  2704. <b:widget-settings>
  2705. <b:widget-setting name='content'><![CDATA[<a href='http://santa-cruz-de-tenerife.costasur.com/index.html'> hoteles en santa cruz de tenerife</a>]]></b:widget-setting>
  2706. </b:widget-settings>
  2707. <b:includable id='main'>
  2708. <!-- only display title if it's non-empty -->
  2709. <b:if cond='data:title != &quot;&quot;'>
  2710. <h2 class='title'><data:title/></h2>
  2711. </b:if>
  2712. <div class='widget-content'>
  2713. <data:content/>
  2714. </div>
  2715.  
  2716. <b:include name='quickedit'/>
  2717. </b:includable>
  2718. </b:widget>
  2719. <b:widget id='HTML6' locked='false' title='Pepelista' type='HTML'>
  2720. <b:widget-settings>
  2721. <b:widget-setting name='content'>&lt;!-- Begin MailChimp Signup Form --&gt;
  2722. &lt;link href=&quot;http://cdn-images.mailchimp.com/embedcode/slim-081711.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;
  2723. &lt;style type=&quot;text/css&quot;&gt;
  2724. #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
  2725. /* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
  2726. We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
  2727. &lt;/style&gt;
  2728. &lt;div id=&quot;mc_embed_signup&quot;&gt;
  2729. &lt;form action=&quot;http://blogspot.us6.list-manage.com/subscribe/post?u=55987ba7f11fd39dab5d8d841&amp;amp;id=cdea5c9877&quot; method=&quot;post&quot; id=&quot;mc-embedded-subscribe-form&quot; name=&quot;mc-embedded-subscribe-form&quot; class=&quot;validate&quot; target=&quot;_blank&quot; novalidate&gt;
  2730. &lt;label for=&quot;mce-EMAIL&quot;&gt;Suscríbase a nuestra Pepelista&lt;/label&gt;
  2731. &lt;input type=&quot;email&quot; value=&quot;&quot; name=&quot;EMAIL&quot; class=&quot;email&quot; id=&quot;mce-EMAIL&quot; placeholder=&quot;email address&quot; required /&gt;
  2732. &lt;div class=&quot;clear&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;Subscribe&quot; name=&quot;subscribe&quot; id=&quot;mc-embedded-subscribe&quot; class=&quot;button&quot; /&gt;&lt;/div&gt;
  2733. &lt;/form&gt;
  2734. &lt;/div&gt;
  2735.  
  2736. &lt;!--End mc_embed_signup--&gt;</b:widget-setting>
  2737. </b:widget-settings>
  2738. <b:includable id='main'>
  2739. <!-- only display title if it's non-empty -->
  2740. <b:if cond='data:title != &quot;&quot;'>
  2741. <h2 class='title'><data:title/></h2>
  2742. </b:if>
  2743. <div class='widget-content'>
  2744. <data:content/>
  2745. </div>
  2746.  
  2747. <b:include name='quickedit'/>
  2748. </b:includable>
  2749. </b:widget>
  2750. <b:widget id='HTML4' locked='false' title='Blogger news' type='HTML'>
  2751. <b:widget-settings>
  2752. <b:widget-setting name='content'>&lt;!-- Si utilizas este código, asumiremos que aceptas las Condiciones del servicio de la Búsqueda personalizada de Google. --&gt;
  2753. &lt;!-- Las Condiciones del servicio están disponibles en la página http://www.google.es/cse/docs/tos.html. --&gt;
  2754. &lt;form name=&quot;cse&quot; id=&quot;searchbox_demo&quot; action=&quot;http://www.google.com/cse&quot;&gt;
  2755. &lt;input type=&quot;hidden&quot; name=&quot;cref&quot; value=&quot;&quot; /&gt;
  2756. &lt;input type=&quot;hidden&quot; name=&quot;ie&quot; value=&quot;utf-8&quot; /&gt;
  2757. &lt;input type=&quot;hidden&quot; name=&quot;hl&quot; value=&quot;&quot; /&gt;
  2758. &lt;input name=&quot;q&quot; type=&quot;text&quot; size=&quot;40&quot; /&gt;
  2759. &lt;input type=&quot;submit&quot; name=&quot;sa&quot; value=&quot;Buscar&quot; /&gt;
  2760. &lt;/form&gt;
  2761. &lt;script type=&quot;text/javascript&quot; src=&quot;http://www.google.es/cse/tools/onthefly?form=searchbox_demo&amp;lang=&quot;&gt;&lt;/script&gt;</b:widget-setting>
  2762. </b:widget-settings>
  2763. <b:includable id='main'>
  2764. <!-- only display title if it's non-empty -->
  2765. <b:if cond='data:title != &quot;&quot;'>
  2766. <h2 class='title'><data:title/></h2>
  2767. </b:if>
  2768. <div class='widget-content'>
  2769. <data:content/>
  2770. </div>
  2771.  
  2772. <b:include name='quickedit'/>
  2773. </b:includable>
  2774. </b:widget>
  2775. </b:section>
  2776. </div>
  2777. <div id='footer3' style='width: 33%; float: left; margin:0; text-align: left;'>
  2778. <b:section class='footer-column' id='col2' preferred='yes' style='float:left;'>
  2779. <b:widget id='HTML14' locked='false' title='' type='HTML'>
  2780. <b:widget-settings>
  2781. <b:widget-setting name='content'>&lt;a href=&quot;http://es.paperblog.com/&quot; rel=&quot;paperblog aprengo&quot; title=&quot;Paperblog : Los mejores artículos de los blogs&quot; &gt;
  2782. &lt;img src=&quot;http://m1.paperblog.com/assets/images/logos/minilogo.png&quot; border=&quot;0&quot; alt=&quot;Paperblog : Los mejores artículos de los blogs&quot; /&gt;
  2783. &lt;/a&gt;</b:widget-setting>
  2784. </b:widget-settings>
  2785. <b:includable id='main'>
  2786. <!-- only display title if it's non-empty -->
  2787. <b:if cond='data:title != &quot;&quot;'>
  2788. <h2 class='title'><data:title/></h2>
  2789. </b:if>
  2790. <div class='widget-content'>
  2791. <data:content/>
  2792. </div>
  2793.  
  2794. <b:include name='quickedit'/>
  2795. </b:includable>
  2796. </b:widget>
  2797. <b:widget id='HTML13' locked='false' title='' type='HTML'>
  2798. <b:widget-settings>
  2799. <b:widget-setting name='content'>&lt;a title=&quot;Google Analytics Alternative&quot; href=&quot;http://clicky.com/100570818&quot;&gt;&lt;img alt=&quot;Google Analytics Alternative&quot; src=&quot;//static.getclicky.com/media/links/badge.gif&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
  2800. &lt;script src=&quot;//static.getclicky.com/js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
  2801. &lt;script type=&quot;text/javascript&quot;&gt;try{ clicky.init(100570818); }catch(e){}&lt;/script&gt;
  2802. &lt;noscript&gt;&lt;p&gt;&lt;img alt=&quot;Clicky&quot; width=&quot;1&quot; height=&quot;1&quot; src=&quot;//in.getclicky.com/100570818ns.gif&quot; /&gt;&lt;/p&gt;&lt;/noscript&gt;</b:widget-setting>
  2803. </b:widget-settings>
  2804. <b:includable id='main'>
  2805. <!-- only display title if it's non-empty -->
  2806. <b:if cond='data:title != &quot;&quot;'>
  2807. <h2 class='title'><data:title/></h2>
  2808. </b:if>
  2809. <div class='widget-content'>
  2810. <data:content/>
  2811. </div>
  2812.  
  2813. <b:include name='quickedit'/>
  2814. </b:includable>
  2815. </b:widget>
  2816. <b:widget id='HTML12' locked='false' title='' type='HTML'>
  2817. <b:widget-settings>
  2818. <b:widget-setting name='content'><![CDATA[<div style="width:97px;"> <a href="http://www.qweb.es/_proyectos-de-ingenieria.html" target="_blank" title="Directorio de Proyectos de ingeniería"><img src="http://www.qweb.es/certqweb-ingenierostenerife.blogspot.com.gif" width="97" height="31" border="0" alt="Directorio de Proyectos de ingeniería" /></a> </div>]]></b:widget-setting>
  2819. </b:widget-settings>
  2820. <b:includable id='main'>
  2821. <!-- only display title if it's non-empty -->
  2822. <b:if cond='data:title != &quot;&quot;'>
  2823. <h2 class='title'><data:title/></h2>
  2824. </b:if>
  2825. <div class='widget-content'>
  2826. <data:content/>
  2827. </div>
  2828.  
  2829. <b:include name='quickedit'/>
  2830. </b:includable>
  2831. </b:widget>
  2832. <b:widget id='HTML9' locked='false' title='' type='HTML'>
  2833. <b:widget-settings>
  2834. <b:widget-setting name='content'><![CDATA[<a href="http://www.fixr.es/sp.ingenieros-tenerife-proyectos-y-peritaciones.html">Ingenieros Tenerife Proyectos y peritaciones</a>]]></b:widget-setting>
  2835. </b:widget-settings>
  2836. <b:includable id='main'>
  2837. <!-- only display title if it's non-empty -->
  2838. <b:if cond='data:title != &quot;&quot;'>
  2839. <h2 class='title'><data:title/></h2>
  2840. </b:if>
  2841. <div class='widget-content'>
  2842. <data:content/>
  2843. </div>
  2844.  
  2845. <b:include name='quickedit'/>
  2846. </b:includable>
  2847. </b:widget>
  2848. <b:widget id='HTML3' locked='false' title='Blogroll' type='HTML'>
  2849. <b:widget-settings>
  2850. <b:widget-setting name='content'><![CDATA[<center><!-- Facebook Badge START --><a href="https://www.facebook.com/ingenieros.tenerife" target="_TOP" style="font-family: &quot;lucida grande&quot;,tahoma,verdana,arial,sans-serif; font-size: 11px; font-variant: normal; font-style: normal; font-weight: normal; color: #3B5998; text-decoration: none;" title="Ingenieros Tenerife">Ingenieros Tenerife</a><br/><a href="https://www.facebook.com/ingenieros.tenerife" target="_TOP" title="Ingenieros Tenerife"><img src="http://badge.facebook.com/badge/100002801353166.49.1853427252.png" style="border: 0px;" /></a><br/><a href="http://es-la.facebook.com/badges/" target="_TOP" style="font-family: &quot;lucida grande&quot;,tahoma,verdana,arial,sans-serif; font-size: 11px; font-variant: normal; font-style: normal; font-weight: normal; color: #3B5998; text-decoration: none;" title="Crea tu propia insignia">Crea tu insignia</a><!-- Facebook Badge END --></center>]]></b:widget-setting>
  2851. </b:widget-settings>
  2852. <b:includable id='main'>
  2853. <!-- only display title if it's non-empty -->
  2854. <b:if cond='data:title != &quot;&quot;'>
  2855. <h2 class='title'><data:title/></h2>
  2856. </b:if>
  2857. <div class='widget-content'>
  2858. <data:content/>
  2859. </div>
  2860.  
  2861. <b:include name='quickedit'/>
  2862. </b:includable>
  2863. </b:widget>
  2864. </b:section>
  2865. </div>
  2866. <div id='footer4' style='width: 33%; float:left; margin:0; text-align: left;'>
  2867. <b:section class='footer-column' id='col3' preferred='yes' style='float:right;'>
  2868. <b:widget id='HTML18' locked='false' title='' type='HTML'>
  2869. <b:widget-settings>
  2870. <b:widget-setting name='content'><![CDATA[<a href="http://www.directoriodelink.com/" target="_blank">directorio paginas web</a>]]></b:widget-setting>
  2871. </b:widget-settings>
  2872. <b:includable id='main'>
  2873. <!-- only display title if it's non-empty -->
  2874. <b:if cond='data:title != &quot;&quot;'>
  2875. <h2 class='title'><data:title/></h2>
  2876. </b:if>
  2877. <div class='widget-content'>
  2878. <data:content/>
  2879. </div>
  2880.  
  2881. <b:include name='quickedit'/>
  2882. </b:includable>
  2883. </b:widget>
  2884. <b:widget id='HTML17' locked='false' title='' type='HTML'>
  2885. <b:widget-settings>
  2886. <b:widget-setting name='content'>&lt;!-- BEGIN Top &#39;TopSites&#39; Homepages CODE --&gt;
  2887. &lt;a href=&quot;http://www.ultimatetopsites.com/bin/topsite.cgi?topsites&amp;cat=general&amp;ID=129&quot;&gt;
  2888. &lt;img src=&quot;http://www.ultimatetopsites.com/bin/votepicture.art?topsites&amp;amp;cat=general&amp;amp;ID=129&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
  2889. &lt;!-- END Top &#39;TopSites&#39; Homepages CODE --&gt;</b:widget-setting>
  2890. </b:widget-settings>
  2891. <b:includable id='main'>
  2892. <!-- only display title if it's non-empty -->
  2893. <b:if cond='data:title != &quot;&quot;'>
  2894. <h2 class='title'><data:title/></h2>
  2895. </b:if>
  2896. <div class='widget-content'>
  2897. <data:content/>
  2898. </div>
  2899.  
  2900. <b:include name='quickedit'/>
  2901. </b:includable>
  2902. </b:widget>
  2903. <b:widget id='HTML15' locked='false' title='' type='HTML'>
  2904. <b:widget-settings>
  2905. <b:widget-setting name='content'><![CDATA[<a href="https://plus.google.com/117303674174012115201" rel="publisher">Google+</a>]]></b:widget-setting>
  2906. </b:widget-settings>
  2907. <b:includable id='main'>
  2908. <!-- only display title if it's non-empty -->
  2909. <b:if cond='data:title != &quot;&quot;'>
  2910. <h2 class='title'><data:title/></h2>
  2911. </b:if>
  2912. <div class='widget-content'>
  2913. <data:content/>
  2914. </div>
  2915.  
  2916. <b:include name='quickedit'/>
  2917. </b:includable>
  2918. </b:widget>
  2919. <b:widget id='Text3' locked='false' title='Contactar' type='Text'>
  2920. <b:widget-settings>
  2921. <b:widget-setting name='content'><![CDATA[<span style="font-weight: bold;">SERVICIOS</span><br /><br />Proyectos instalaciones industriales.<br />Proyectos de apertura .<br />Certificados técnicos.<br />Proyectos Contra Incendio.<br />Proyectos Climatización.<br />Proyectos bares y restaurantes.<br />Peritaciones incendios.<br />Peritaciones.<br />Tasaciones.<br />Ingeniería de Vehículos.<br />Peritaciones judiciales.<br />Proyectos de Gruas Torre Desmontables.<br />Certificados GT automontantes.<br />Reconstrucción accidentes de Tráfico.<br />Reformas de importancia vehículos.<br />Fichas técnicas reducidas.<br />Investigación incendios.<br /><br /><br /><b>CONTACTAR</b><br /><br />móvil <b>661 018 074 </b><br />fax 922 200 309<br /><a href="mailto:[email protected]">[email protected]</a><script src="//rankboostup.com/plugin/content.js" type="text/javascript"></script>]]></b:widget-setting>
  2922. </b:widget-settings>
  2923. <b:includable id='main'>
  2924. <!-- only display title if it's non-empty -->
  2925. <b:if cond='data:title != &quot;&quot;'>
  2926. <h2 class='title'><data:title/></h2>
  2927. </b:if>
  2928. <div class='widget-content'>
  2929. <data:content/>
  2930. </div>
  2931.  
  2932. <b:include name='quickedit'/>
  2933. </b:includable>
  2934. </b:widget>
  2935. <b:widget id='HTML2' locked='false' title='About' type='HTML'>
  2936. <b:widget-settings>
  2937. <b:widget-setting name='content'>&lt;a href=&quot;https://twitter.com/IngenierosTF&quot; class=&quot;twitter-follow-button&quot; data-show-count=&quot;false&quot; data-lang=&quot;es&quot; data-size=&quot;large&quot;&gt;Segui @IngenierosTF&lt;/a&gt;
  2938. &lt;script&gt;!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=&quot;//platform.twitter.com/widgets.js&quot;;fjs.parentNode.insertBefore(js,fjs);}}(document,&quot;script&quot;,&quot;twitter-wjs&quot;);&lt;/script&gt;</b:widget-setting>
  2939. </b:widget-settings>
  2940. <b:includable id='main'>
  2941. <!-- only display title if it's non-empty -->
  2942. <b:if cond='data:title != &quot;&quot;'>
  2943. <h2 class='title'><data:title/></h2>
  2944. </b:if>
  2945. <div class='widget-content'>
  2946. <data:content/>
  2947. </div>
  2948.  
  2949. <b:include name='quickedit'/>
  2950. </b:includable>
  2951. </b:widget>
  2952. </b:section>
  2953. </div>
  2954. <div style='clear:both;'/>
  2955. </div>
  2956. </div>
  2957. <!-- Credits : Don't Change Anything Here -->
  2958. <div class='span-24' id='footer-wrap'>
  2959. <div id='footer'>
  2960. <div id='copyrights'>
  2961. Copyright &#169; 2011 <a expr:href='data:blog.homepageUrl'><data:blog.title/></a> | Powered by <a href='http://www.blogger.com/'>Blogger</a>
  2962. </div>
  2963. <div id='credits'>
  2964. Design by Free <a href='http://fthemes.com/' target='_blank'>WordPress Themes</a> | Bloggerized by <a href='http://www.bloggertipandtrick.net/' target='_blank' title='Best Blogging Tutorials'>Lasantha</a> - <a href='http://www.premiumbloggertemplates.com/' target='_blank' title='Free Blogger Templates'>Premium Blogger Themes</a> | <a href='http://ucallweconn.net/en/products/cheap-international-calls.html' target='_blank'>buy voip minutes online</a></div>
  2965. </div>
  2966. </div>
  2967. <div style='clear:both;'/>
  2968. </div></div></div> <!-- end outer-wrapper -->
  2969. <!-- Quantcast Tag -->
  2970. <script type='text/javascript'>
  2971. var _qevents = _qevents || [];
  2972.  
  2973. (function() {
  2974. var elem = document.createElement(&#39;script&#39;);
  2975. elem.src = (document.location.protocol == &quot;https:&quot; ? &quot;https://secure&quot; : &quot;http://edge&quot;) + &quot;.quantserve.com/quant.js&quot;;
  2976. elem.async = true;
  2977. elem.type = &quot;text/javascript&quot;;
  2978. var scpt = document.getElementsByTagName(&#39;script&#39;)[0];
  2979. scpt.parentNode.insertBefore(elem, scpt);
  2980. })();
  2981.  
  2982. _qevents.push({
  2983. qacct:&quot;p-T8BrTqNcQn351&quot;
  2984. });
  2985. </script>
  2986.  
  2987. <noscript>
  2988. <div style='display:none;'>
  2989. <img alt='Quantcast' border='0' height='1' src='//pixel.quantserve.com/pixel/p-T8BrTqNcQn351.gif' width='1'/>
  2990. </div>
  2991. </noscript>
  2992. <!-- End Quantcast tag -->
  2993. </body>
  2994. </html>
Advertisement
Add Comment
Please, Sign In to add comment