ÿþ<html> <head> <style fprolloverstyle> A:hover {color: #FFFFFF; text-decoration: underline} .style1 { color: #003300; font-size: x-small; } .style2 {color: #990000} .style3 {font-size: x-small} .style4 {font-size: xx-small} </style> <center> <font face="Tahoma" size="2"> <TITLE>Limo Hire Derbyshire/Limousine Hire Derbyshire/Wedding Car Hire Derbyshire</TITLE> <META NAME="DESCRIPTION" CONTENT="As a local privately owned Company, we specialise in Stretch Limousine hire for Weddings, Prom Nights and Birthday Parties, Limo Hire Derbyshire, Limousine Hire Derbyshire, Wedding Car Hire Derbyshire, Chauffeur Hire Derbyshire, Corporate Travel Derbyshire, Prom Night Limos Derbyshire"> <META NAME="KEYWORDS" CONTENT="Limo Hire Derbyshire | Limousine Hire Derbyshire | Wedding Car Hire Derbyshire | Chauffeur Hire Derbyshire | Corporate Travel Derbyshire | Prom Night Limos Derbyshire | Limo Hire Derbyshire | Limousine Hire Derbyshire | Wedding Car Hire Derbyshire | Chauffeur Hire Derbyshire | Corporate Travel Derbyshire | Prom Night Limos Derbyshire"> <META NAME="AUTHOR" CONTENT="Danny Sidgwick 2009"> <META NAME="RATING" CONTENT="General"> <META NAME="ROBOTS" CONTENT="index,follow"> <META NAME="REVISIT-AFTER" CONTENT="7 days"> <STYLE> A {text-decoration: none;} </STYLE> </font> <script type="text/javascript"> var fadeimages=new Array() //SET IMAGE PATHS. Extend or contract array as needed fadeimages[0]=["menupic/1.gif", "", ""] fadeimages[1]=["menupic/2.gif", "", ""] fadeimages[2]=["menupic/3.gif", "", ""] fadeimages[3]=["menupic/4.gif", "", ""] fadeimages[4]=["menupic/5.gif", "", ""] fadeimages[5]=["menupic/6.gif", "", ""] fadeimages[6]=["menupic/7.gif", "", ""] fadeimages[7]=["menupic/8.gif", "", ""] fadeimages[8]=["menupic/9.gif", "", ""] fadeimages[9]=["menupic/10.gif", "", ""] fadeimages[10]=["menupic/11.gif", "", ""] fadeimages[11]=["menupic/12.gif", "", ""] fadeimages[12]=["menupic/13.gif", "", ""] fadeimages[13]=["menupic/14.gif", "", ""] fadeimages[14]=["menupic/15.gif", "", ""] fadeimages[15]=["menupic/16.gif", "", ""] fadeimages[16]=["menupic/17.gif", "", ""] var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed. //SET IMAGE PATHS. Extend or contract array as needed fadeimages2[0]=["photo1.jpg", "", ""] //plain image syntax fadeimages2[1]=["photo2.jpg", "http://www.cssdrive.com", ""] //image with link syntax fadeimages2[2]=["photo3.jpg", "http://www.javascriptkit.com", "_new"] //image with link and target syntax var fadebgcolor="black" ////NO need to edit beyond here///////////// var fadearray=new Array() //array to cache fadeshow instances var fadeclear=new Array() //array to cache corresponding clearinterval pointers var dom=(document.getElementById) //modern dom browsers var iebrowser=document.all function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){ this.pausecheck=pause this.mouseovercheck=0 this.delay=delay this.degree=10 //initial opacity degree (10%) this.curimageindex=0 this.nextimageindex=1 fadearray[fadearray.length]=this this.slideshowid=fadearray.length-1 this.canvasbase="canvas"+this.slideshowid this.curcanvas=this.canvasbase+"_0" if (typeof displayorder!="undefined") theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :) this.theimages=theimages this.imageborder=parseInt(borderwidth) this.postimages=new Array() //preload images for (p=0;p<theimages.length;p++){ this.postimages[p]=new Image() this.postimages[p].src=theimages[p][0] } var fadewidth=fadewidth+this.imageborder*2 var fadeheight=fadeheight+this.imageborder*2 if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox) document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>') else document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>') if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox this.startit() else{ this.curimageindex++ setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay) } } function fadepic(obj){ if (obj.degree<100){ obj.degree+=10 if (obj.tempobj.filters&&obj.tempobj.filters[0]){ if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+ obj.tempobj.filters[0].opacity=obj.degree else //else if IE5.5- obj.tempobj.style.filter="alpha(opacity="+obj.degree+")" } else if (obj.tempobj.style.MozOpacity) obj.tempobj.style.MozOpacity=obj.degree/101 else if (obj.tempobj.style.KhtmlOpacity) obj.tempobj.style.KhtmlOpacity=obj.degree/100 else if (obj.tempobj.style.opacity&&!obj.tempobj.filters) obj.tempobj.style.opacity=obj.degree/101 } else{ clearInterval(fadeclear[obj.slideshowid]) obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1" obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas) obj.populateslide(obj.tempobj, obj.nextimageindex) obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0 setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay) } } fadeshow.prototype.populateslide=function(picobj, picindex){ var slideHTML="" if (this.theimages[picindex][1]!="") //if associated link exists for image slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">' slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">' if (this.theimages[picindex][1]!="") //if associated link exists for image slideHTML+='</a>' picobj.innerHTML=slideHTML } fadeshow.prototype.rotateimage=function(){ if (this.pausecheck==1) //if pause onMouseover enabled, cache object var cacheobj=this if (this.mouseovercheck==1) setTimeout(function(){cacheobj.rotateimage()}, 100) else if (iebrowser&&dom||dom){ this.resetit() var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas) crossobj.style.zIndex++ fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50) this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0" } else{ var ns4imgobj=document.images['defaultslide'+this.slideshowid] ns4imgobj.src=this.postimages[this.curimageindex].src } this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0 } fadeshow.prototype.resetit=function(){ this.degree=10 var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas) if (crossobj.filters&&crossobj.filters[0]){ if (typeof crossobj.filters[0].opacity=="number") //if IE6+ crossobj.filters(0).opacity=this.degree else //else if IE5.5- crossobj.style.filter="alpha(opacity="+this.degree+")" } else if (crossobj.style.MozOpacity) crossobj.style.MozOpacity=this.degree/101 else if (crossobj.style.KhtmlOpacity) crossobj.style.KhtmlOpacity=this.degree/100 else if (crossobj.style.opacity&&!crossobj.filters) crossobj.style.opacity=this.degree/101 } fadeshow.prototype.startit=function(){ var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas) this.populateslide(crossobj, this.curimageindex) if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER var cacheobj=this var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid) crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1} crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0} } this.rotateimage() } </script> <head> <center> <body link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" bgcolor="#EFEFEF"> <table border="0" width="724" id="table1" cellspacing="0" cellpadding="0"> <tr> <td style="background-image: url('images/title.gif'); background-repeat: no-repeat; background-position: left top" width="797" height="89" valign="top"> <table border="0" width="100%" id="table5" cellspacing="0" cellpadding="0"> <tr> <td><font face="Tahoma" size="1">&nbsp; </font></td> <td width="391"><font face="Tahoma" size="1">&nbsp; </font></td> </tr> <tr> <td>&nbsp;</td> <td width="391"><font face="Tahoma" color="#FFFFFF"> <marquee loop="100" scrolldelay="120">We are now taking wedding bookings for 2011 & 2012. Please book early to avoid disappointment.</marquee></font></td> </tr> </table> </td> </tr> <tr> <td><font face="Tahoma" size="2"> <map name="FPMap0"> <area alt="Jo-Lo Limousines - Weddings" href="weddings.htm" shape="rect" coords="11, 3, 148, 38"> <area alt="Jo-Lo Limousines - Prom Nights" href="corporate.htm" shape="rect" coords="159, 4, 328, 39"> <area alt="Jo-Lo Limousines - Sports &amp; Race Days" href="promnights.htm" shape="rect" coords="337, 2, 533, 38"> <area alt="Jo-Lo Limousines - Blackpool Illuminations" href="stagandhens.htm" shape="rect" coords="539, 5, 790, 36"> </map> <img border="0" src="images/topmenu.gif" width="797" height="42" usemap="#FPMap0"></font></td> </tr> <tr> <td valign="top" bgcolor="#FFFFFF"> <table border="0" width="100%" id="table3" cellspacing="0" cellpadding="0"> <tr> <td width="224"> <map name="FPMap1"> <area alt="Jo-Lo Limousines - Home" href="index.htm" shape="rect" coords="15, 13, 212, 35"> <area alt="Jo-Lo Limousines - About Us" href="aboutus.htm" shape="rect" coords="15, 38, 211, 57"> <area alt="Jo-Lo Limousines - Gallery" href="gallery.htm" shape="rect" coords="15, 61, 210, 80"> <area alt="Jo-Lo Limousines - Enquiry" href="enquiry.htm" shape="rect" coords="16, 83, 211, 103"> <area alt="Jo-Lo Limousines - Brochures" href="brochures.htm" shape="rect" coords="16, 106, 208, 124"> <area alt="Jo-Lo Limousines - Contact Us" href="contactus.htm" shape="rect" coords="17, 125, 207, 145"> <area alt="Jo-Lo Limousines - Accreditations" href="accreditations.htm" shape="rect" coords="17, 147, 207, 167"> <area alt="Jo-Lo Limousines - Q&amp;A's" href="qa.htm" shape="rect" coords="17, 170, 207, 188"> </map> <img border="0" src="images/menu.gif" width="224" height="207" usemap="#FPMap1"></td> <td><script type="text/javascript"> //new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder) new fadeshow(fadeimages, 572, 206, 0, 3000, 1, 1) </script></td> </tr> </table> </td> </tr> <tr> <td bgcolor="#1D4310" height="273" valign="top" align="justify">&nbsp;<p style="margin:0 30px; "> <img border="0" src="images/welcome.gif" width="319" height="34"></p> <p style="margin:0 30px; ">&nbsp;</p> <p style="margin:0 30px; "> <font face="Tahoma" size="2" color="#FFFFFF">As a local privately owned Company, we specialise in Stretch Limousine hire for Weddings, Prom Nights, Race Days, Corporate Events and Birthday Parties.<br> <br> Whatever your occasion, even an indulgent night out with friends or family, we aim to offer you an unparalleled and unforgettable service, which you would use again and refer to family and friends.<br> <br> We specialise in Race Days &amp; Weddings, with special offers for mid week events. We can offer hire periods from one hour to a full day, with our chauffeur always on standby during the duration of your hire. <br> <br> Please take a look around our site, view our cars at our gallery or download a brochure . If you are unsure about what type of car you want for your occasion, just give one of our friendly team a call and we can discuss your needs with you.<br> <br> Thank you for visiting Jo Lo Limousines.</font></p> <p style="margin:0 30px; ">&nbsp; </p></td> </tr> <tr> <td bgcolor="#0E2107"> <table border="0" width="99%" id="table4" cellspacing="0" cellpadding="0"> <tr> <td align="left" width="257" valign="top"> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <font face="Tahoma" size="1">&nbsp;</font></p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <font size="1" face="Tahoma"> <img border="0" src="images/1weddings.gif" width="216" height="46"></font></td> <td align="left" width="287" valign="top"> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <font face="Tahoma" size="1">&nbsp;</font></p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <img border="0" src="images/promnights2.gif" width="216" height="44"></td> <td align="left" valign="top"> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <font face="Tahoma" size="1">&nbsp;</font></p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <img border="0" src="images/corporate3.gif" width="216" height="44"></td> </tr> <tr> <td align="left" width="257" valign="top" height="78"> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <font color="#FFFFFF" face="Tahoma" size="2">For any couple their Wedding Day is probably the biggest day of their lives, with all the planning and expense that goes into making it a day to remember. <br> <br> Whether your wedding is taking place locally, or the chosen venue is  out of town ...</font></p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify">&nbsp;</p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <font face="Tahoma" size="2" color="#FFFFFF"> <a title="Jo-Lo Limousines - Weddings" href="weddings.htm">Read More &gt;</a></font></p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"></td> <td align="left" width="287" valign="top" height="78"> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <font color="#FFFFFF" face="Tahoma" size="2">At Jo Lo Limousines, we understand a Graduation Ball or School Prom Night is often the highlight of any student s year.</font></p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify">&nbsp; </p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <font color="#FFFFFF" face="Tahoma" size="2">We want to make it a memorable one for you by allowing you to arrive in style in our fabulous Chrysler Stretch Limousine. </font></p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify">&nbsp;</p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <font face="Tahoma" size="2" color="#FFFFFF"> <a title="Jo-Lo Limousines - Prom Nights" href="promnights.htm">Read More &gt;</a></font></p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"></td> <td align="left" valign="top" height="78"> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <font color="#FFFFFF" face="Tahoma" size="2">As Jo Lo Limousines is owned and run with a strong Corporate Image and presence in mind, we understand the need for reliability, punctuality &amp; flexibility for all of our Business Customers.</font></p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify">&nbsp;</p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"> <font face="Tahoma" size="2" color="#FFFFFF"> <a title="Jo-Lo Limousines - Corporate" href="corporate.htm">Read More &gt;</a></font></p> <p style="margin-left: 15px; margin-top: 0; margin-bottom: 0; margin-right:10px" align="justify"></td> </tr> </table> </td> </tr> <tr> <td bgcolor="#1D4310">&nbsp;<p style="margin-left: 6px; margin-top: 0; margin-bottom: 0" align="center"> <font face="Tahoma" size="1" color="#FFFFFF"> <a title="Jo-Lo Limousines - Home" href="index.htm">Home</a> | <a title="Jo-Lo Limousines - About Us" href="aboutus.htm">About Us</a> | <a title="Jo-Lo Limousines - Privacy Policy" href="policy.htm">Privacy Policy</a> | <a title="Jo-Lo Limousines - Terms &amp; Conditions" href="terms.htm">Terms &amp; Conditions</a> | <a title="Jo-Lo Limousines - Partners" href="partners.htm">Partners</a> | <a title="Jo-Lo Limousines - Contact Us" href="contactus.htm">Contact Us</a><br> Jo Lo Limousines |1 Charleston Close | Bretby on the Hill | Derbyshire | DE11 0HW<br> Tel 01283 219 873 | Fax 01283 219 873 | <a href="mailto:enquiry@jo-lolimousines.co.uk"> enquiry@jo-lolimousines.co.uk</a></font></p> <p style="margin-left: 6px; margin-top: 0; margin-bottom: 0" align="center"></td> </tr> <tr> <td>&nbsp;</td> </tr> </table> <p align="center"><span class="style1">Site Promotion By Vertigo Site Solutions Ltd - </span><span class="style3"><a href="http://www.vertigositesolutions.co.uk" class="style2">Search Engine Consultants</a></span></p> <p align="center" class="style4">Limo Hire Derbyshire | Limousine Hire Derbyshire | Wedding Car Hire Derbyshire | Chauffeur Hire Derbyshire | Corporate Travel Derbyshire | Prom Night Limos Derbyshire </p> </body> </html>