ÿþ<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"><!-- Source is http://album.flueras.com/#container --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Tonofoto-Porftolio-Instagram</title> <meta http-equiv="content-language" content="es" /> <meta name="description" content="Portfolio de Tonofoto" /> <meta name="rating" content="General" /> <meta name="robots" content="index, follow, noydir, noodp, all" /> <meta name="revisit-after" content="3" /> <meta name="author" content="Antonio Martinez Sanchez" /> <base href="http://tonofoto.com/" /> <link href="public/script/all2.css" rel="stylesheet" type="text/css" media="screen" /> <script> window.onload = function() { HtinyScrolling.init(); scrollTips.init(); } var HtinyScrolling = { speed : 0, //set here the scroll speed: when this value increase, the speed decrease. maxStep: 250, //set here the "uniform motion" step for long distances brakeK: 10, //set here the coefficient of slowing down hash:null, currentBlock:null, requestedX:0, init: function() { var lnks = document.getElementsByTagName('a'); for(var i = 0, lnk; lnk = lnks[i]; i++) { if ((lnk.href && lnk.href.indexOf('#') != -1) && ( (lnk.pathname == location.pathname) || ('/'+lnk.pathname == location.pathname) ) && (lnk.search == location.search)) { addEvent(lnk,'click',HtinyScrolling.initScroll,false); lnk.onclick=function(){return false;} // Safari } } }, getTarget: function(target) { while(target.tagName.toLowerCase() != 'a') target = target.parentNode; return target; }, getElementXpos: function(el){ var x = 0; while(el.offsetParent){ x += el.offsetLeft; el = el.offsetParent; } return x; }, getScrollLeft: function(){ if(document.all) return (document.documentElement.scrollLeft) ? document.documentElement.scrollLeft : document.body.scrollLeft; else return window.pageXOffset; }, getWindowWidth: function(){ if (window.innerWidth) return window.innerWidth; if(document.documentElement && document.documentElement.clientWidth) return document.documentElement.clientWidth; }, getDocumentWidth: function(){ if (document.width) return document.width; if(document.body.offsetWidth) return document.body.offsetWidth; }, initScroll: function(e){ var targ; if (!e) var e = window.event; if (e.target) targ = e.target; else if (e.srcElement) targ = e.srcElement; targ = HtinyScrolling.getTarget(targ); //a fix by Skid X HtinyScrolling.hash = targ.href.substr(targ.href.indexOf('#')+1,targ.href.length); HtinyScrolling.currentBlock = document.getElementById(HtinyScrolling.hash); if(!HtinyScrolling.currentBlock) return; HtinyScrolling.requestedX = HtinyScrolling.getElementXpos(HtinyScrolling.currentBlock); HtinyScrolling.scroll(targ); return false; }, scroll: function(targ){ var left = HtinyScrolling.getScrollLeft(); if(HtinyScrolling.requestedX > left) { var endDistance = Math.round((HtinyScrolling.getDocumentWidth() - (left + HtinyScrolling.getWindowWidth())) / HtinyScrolling.brakeK); endDistance = Math.min(Math.round((HtinyScrolling.requestedX-left)/ HtinyScrolling.brakeK), endDistance); var offset = Math.max(15, Math.min(endDistance, HtinyScrolling.maxStep)); } else { var offset = - Math.min(Math.abs(Math.round((HtinyScrolling.requestedX-left)/ HtinyScrolling.brakeK)), HtinyScrolling.maxStep); } window.scrollTo(left + offset, 0); if(Math.abs(left-HtinyScrolling.requestedX) <= 1 || HtinyScrolling.getScrollLeft() == left) { window.scrollTo(HtinyScrolling.requestedX, 0); if(typeof XULDocument != 'undefined') { location.hash = HtinyScrolling.hash; } //optional instructions: you can add an effect to enlight after the scroll the selected section. //uncomment this line below if you want to change the opacity: //mark.change_opacity(HtinyScrolling.hash); //you can also call the function "mark.change_colors(HtinyScrolling.hash, fps, (duration in sec), #(color in hex), #(color in hex))" to change background color of selected section HtinyScrolling.hash = null; } else setTimeout(HtinyScrolling.scroll,HtinyScrolling.speed); } } /* the mouse scrolling doesn't work with Opera, that hasn't a event associated to the mouse wheel */ var scrollTips = { dx : null, init : function() { if (window.addEventListener) { window.addEventListener("DOMMouseScroll", this.mouseScroll, false); } else document.attachEvent("onmousewheel", this.mouseScroll); var left = document.getElementById('left'); addEvent(left,'mouseover', function() {this.dx=setInterval('scrollTips.arrowScroll(0)',100);return false;}); addEvent(left,'mouseout', function() { clearInterval(this.dx); return false;}); var right = document.getElementById('right'); addEvent(right,'mouseover', function() {this.dx=setInterval('scrollTips.arrowScroll(1)',100);return false;}); addEvent(right,'mouseout', function() { clearInterval(this.dx); return false;}); }, mouseScroll : function(e) { if (!e) var e = window.event; if (e.wheelDelta <= 0 || e.detail>=0){ window.scrollBy(80,0); } else window.scrollBy(-80,0) ; }, arrowScroll: function(val) { if(val==1) { window.scrollBy(70,0); } else { window.scrollBy(-70,0) } } } var mark = { //first four functions are based on The Fade Anything Technique by Adam Michela valop : 100, req : 0, make_hex: function(r,g,b) { r = r.toString(16); if (r.length == 1) r = '0' + r; g = g.toString(16); if (g.length == 1) g = '0' + g; b = b.toString(16); if (b.length == 1) b = '0' + b; return "#" + r + g + b; }, change_colors: function(id, fps, duration, from, to) { var frames = Math.round(fps * (duration / 1000)); var interval = duration / frames; var delay = interval; var frame = 0; if (from.length < 7) from += from.substr(1,3); if (to.length < 7) to += to.substr(1,3); var rf = parseInt(from.substr(1,2),16); var gf = parseInt(from.substr(3,2),16); var bf = parseInt(from.substr(5,2),16); var rt = parseInt(to.substr(1,2),16); var gt = parseInt(to.substr(3,2),16); var bt = parseInt(to.substr(5,2),16); var r,g,b,h; while (frame < frames) { r = Math.floor(rf * ((frames-frame)/frames) + rt * (frame/frames)); g = Math.floor(gf * ((frames-frame)/frames) + gt * (frame/frames)); b = Math.floor(bf * ((frames-frame)/frames) + bt * (frame/frames)); h = this.make_hex(r,g,b); setTimeout("mark.set_img_bgcolor('"+id+"','"+h+"')", delay); frame++; delay = interval * frame; } setTimeout("mark.set_img_bgcolor('"+id+"','"+to+"')", delay); }, set_img_bgcolor: function(id, c) { if(document.getElementById(id).getElementsByTagName('img')[0]) { var o = document.getElementById(id).getElementsByTagName('img')[0]; o.style.backgroundColor = c;} else return; }, get_img_bgcolor: function(id) { var o = document.getElementById(id).getElementsByTagName('img')[0]; while(o) { var c; if (window.getComputedStyle) c = window.getComputedStyle(o,null).getPropertyValue("background-color"); if (o.currentStyle) c = o.currentStyle.backgroundColor; if ((c != "" && c != "transparent") || o.tagName == "BODY") { break; } o = o.parentNode; } if (c == undefined || c == "" || c == "transparent") c = "#FFFFFF"; var rgb = c.match(/rgb\s*\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*\)/); if (rgb) c = this.make_hex(parseInt(rgb[1]),parseInt(rgb[2]),parseInt(rgb[3])); return c; }, change_opacity: function(el) { if(!(/^menu/.test(el))) { var post = document.getElementById(el); if (mark.valop > 10 && mark.req == 0) { mark.valop -= 10; mark.set_opacity(post,mark.valop); if(mark.valop == 10) {mark.req = 1}; } else if (mark.valop < 100 && mark.req == 1) { mark.valop += 10; mark.set_opacity(post,mark.valop); if(mark.valop == 100) {mark.req = 2}; } if (mark.req != 2){ setTimeout("mark.change_opacity('"+el+"')", 50); } else { mark.set_opacity(post,9999); mark.req = 0; return;} } }, set_opacity: function(post,val){ post.style.opacity='0.' + val ; post.style.filter="alpha(opacity=" + val + ")"; } } function addEvent( obj, type, fn ) { if(obj==undefined || obj==null){return;} if (obj.addEventListener) obj.addEventListener( type, fn, false ); else if (obj.attachEvent) { obj["e"+type+fn] = fn; obj[type+fn] = function() { obj["e"+type+fn]( window.event ); } obj.attachEvent( "on"+type, obj[type+fn] ); } } function removeEvent( obj, type, fn ) { if (obj.removeEventListener) obj.removeEventListener( type, fn, false ); else if (obj.detachEvent) { obj.detachEvent( "on"+type, obj[type+fn] ); obj[type+fn] = null; obj["e"+type+fn] = null; } } </script> <!-- type="text/javascript" src="public/script/hscroll.js" ---> <!-- type="text/javascript" src="public/script/prototype.js" --> <!-- type="text/javascript" src="public/script/prototip.js" --> <!--[if lte IE 6]> <link href="public/script/allie6.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> <!--[if lte IE 7]> <link href="public/script/allie7.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]--> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-30566263-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body> <div id="top"> <div id="logo"><a href="http://www.tonofoto.com/"><img src="public/script/logo.gif" alt="tonofoto.com" width="290" height="86" border="0" /></a></div> <!-- <div id="title"> <h1>TONOFOTO<br />.COM<br /> <span>PHOTOGRAPHY</span></h1> </div> --> <div id="menu"> <ul> <li><a href="http://www.tonofoto.com/Portfolio2/Niños.html">Niños I</a></li><li><a href="http://www.tonofoto.com/Portfolio2/Niños2.html">Niños II</a></li><li><a href="http://www.tonofoto.com/Portfolio2/Embarazo.html">Embarazo</a></li><li><a href="http://www.tonofoto.com/Portfolio2/Comuniones2010.html">Comuniones 2010</a></li><li><a href="http://www.tonofoto.com/Portfolio2/Comuniones2011.html">Comuniones 2011</a></li><li><a href="http://www.tonofoto.com/Portfolio2/Retratos.html">Retrato</a></li><li><a href="http://www.tonofoto.com/Portfolio2/Shani.html">Shani Ormiston</a></li><li><a href="http://www.tonofoto.com/Portfolio2/Seis.html">Seis Novias</a></li><li><a href="http://www.tonofoto.com/Portfolio2/Moda.html">Moda</a></li><li><a href="http://www.tonofoto.com/Portfolio2/Beauty.html">Beauty</a></li><li><a href="http://www.tonofoto.com/Portfolio2/Personal.html">Personal</a></li><li><a href="http://www.tonofoto.com/Portfolio2/Lugares.html">Lugares</a></li><li>Instagram</li><li><a href="http://www.tonofoto.com">Blog</a></li> </ul> </div> <div id="contact">&copy;2011 <a href="http://www.tonofoto.com">tonofoto.com</a> </div> </div> <!-- <div id="arrows"> <ul> <li id="left"><a href="javascript://" title="go left">go left</a></li> <li id="right"><a href="javascript://" title="go right">go right</a></li> </ul> </div> --> <!-- sageti de comanda stanga-dreapta --> <!-- div id="footer"> &copy;2011 <a href="http://www.tonofoto.com">tonofoto.com</a> </div --> <div id="container" style="width:39500px;"> <ul> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a62" id="a62"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/62.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a61" id="a61"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/61.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a60" id="a60"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/60.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a59" id="a59"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/59.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a58" id="a58"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/58.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a57" id="a57"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/57.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a56" id="a56"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/56.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a55" id="a55"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/55.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a54" id="a54"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/54.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a53" id="a53"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/53.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a52" id="a52"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/52.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a51" id="a51"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/51.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a50" id="a50"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/50.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a49" id="a49"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/49.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a48" id="a48"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/48.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a47" id="a47"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/47.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a46" id="a46"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/46.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a45" id="a45"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/45.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a44" id="a44"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/44.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a43" id="a43"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/43.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a42" id="a42"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/42.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a41" id="a41"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/41.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a40" id="a40"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/40.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a39" id="a39"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/39.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a38" id="a38"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/38.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a37" id="a37"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/37.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a36" id="a36"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/36.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a35" id="a35"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/35.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a34" id="a34"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/34.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a33" id="a33"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/33.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a32" id="a32"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/32.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a31" id="a31"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/31.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a30" id="a30"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/30.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a29" id="a29"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/29.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a28" id="a28"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/28.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a27" id="a27"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/27.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a26" id="a26"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/26.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a25" id="a25"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/25.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a24" id="a24"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/24.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a23" id="a23"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/23.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a22" id="a22"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/22.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a21" id="a21"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/21.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a20" id="a20"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/20.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a19" id="a19"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/19.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a18" id="a18"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/18.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a17" id="a17"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/17.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a16" id="a16"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/16.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a15" id="a15"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/15.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a14" id="a14"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/14.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a13" id="a13"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/13.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a12" id="a12"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/12.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a11" id="a11"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/11.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a10" id="a10"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/10.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a9" id="a9"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/9.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a8" id="a8"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/8.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a7" id="a7"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/7.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a6" id="a6"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/6.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a5" id="a5"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/5.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a4" id="a4"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/4.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a3" id="a3"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/3.jpg" alt="" border="0" /></a></li> <li><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#a2" id="a2"><img src="http://www.tonofoto.com/Portfolio2/Galeria/Instagram/2.jpg" alt="" border="0" /></a></li> <li id="back00"><a href="http://www.tonofoto.com/Portfolio2/Instagram.html#container" id="back">&nbsp;</a></li> </ul> </div> </body> </html>