// JavaScript Document
<!--
var pictures = [
"Airport Transfers",
"limo-services1.gif",
"We transfer passengers from Houston and all surronding areas to IAH and William P. Hobby 24 hours a day, seven days a week. Our Fleet of Buses, Limousines, Vans, SUVs and Sedans can transfer you and your guests to the airports at any time with lowest cost possible.",

"Cruise Transfer",
"limo-services2.gif",
"We can transfer any group size to the Galveston Island for your cruise trips.",

"Corporate Events and Meetings",
"limo-services3.gif",
"Are you looking for a reliable service that safely brings your guests and visitors to important meetings or to the company interviews. Well look no furthur because we specialize in corporate travel. Let us handle your next important visit.",

"Limo Bus",
"limo-services4.gif",
"We are able to shuttle your staff all around town with our Executive busses or Business vans. We can handle any size of job you request. We are here to serve you.",

"Weddings",
"limo-services5.gif",
"Lets make your Wedding a memory of a lifetime. We can handle all of your special moments of your wedding. Our fleet of exotic limousines can carry you and your guests anywhere you may need. Whether it be a limo for the bride and groom or a shuttle bus for the guests, we can handle it all.",

"Bachelorette Bachelor Party",
"limo-services6.gif",
"Lets make your party one you will never forget. Let us drive you all night while you just worry about partying the night away. Ask about our package specials with booking both Bachelor/Bachelorette parties with your Wedding day as well.",

"Proms and Home Comings",
"limo-services7.gif",
"Let your children have an evening to remember while you rest at ease knowing that they will arrive safe and sound, along with being the talk of the town!",


"0",
"0",
"we offer many more services, just call us and let us serve you in the best way possible, we value your business, and time."


];

var images_dir =  "http://www.houstonlimousineservices.net/images/"
var h_line =  "http://www.limofo.com/images/Pixel1x1.gif"
var v_line =  "http://www.limofo.com/images/Pixel1x1.gif"

for(var i=0; i<pictures.length; i++){
	
	//----- Limo Pictures -----
	document.write("<table width='96%' border='0' align='center' cellpadding='0' cellspacing='0'>")
	document.write("<tr>")
	
	document.write("<td width='50%' valign='top'>")
	
		//--- Cell table ---
		document.write("<table width='100%' border='0' cellpadding='0' cellspacing='3'>")
		document.write("<tr><td valign='left'><b>"+ pictures[i] +"</b></td></tr></table>")

	i++; 
		document.write("<table width='100%' border='0' cellpadding='0' cellspacing='3'>")
		document.write("<tr><td valign='top'><img src='"+ images_dir + pictures[i] +"' align='left' alt='Services'></td>")
	i++;	
		document.write("<td valign='top'><span class='text1' align='justify'>"+ pictures[i] +"</span></td>")
		document.write("</tr></table>")
	i++;
	
	//---- Vertical Black Line -----
	document.write("<td align='center' bgcolor='#000000' valign='middle'><img src='"+ v_line +"' alt='Vertical Line'>")
	document.write("</td>")
	//----/Vertical Black Line -----
	
	
	document.write("<td  width='50%' valign='top'>")
				   
		//--- Cell table ---
		document.write("<table width='100%' border='0' cellpadding='0' cellspacing='3'><tr><td valign='left'><b>")
		if(pictures[i]!=0) document.write(pictures[i])
		document.write("</b></td></tr></table>")

	i++; 
		document.write("<table width='100%' border='0' cellpadding='0' cellspacing='3'>")
		if(pictures[i]!=0) document.write("<tr><td align='right' valign='top'><img src='"+ images_dir + pictures[i] +"' align='left' alt='Services'></td>")
	i++;	
		document.write("<td valign='top'><span class='text1' align='justify'>")
		if( pictures[i-1] ==0){ document.write("<br>"+ pictures[i]) }else{ document.write(pictures[i]) }
		
		document.write("</span></td>")
		document.write("</tr></table>")

		   
	document.write("</td>")
	document.write("</tr>")
	document.write("</table>")


//----- Horizontal Black Line -----
//--- 31 needs to be changed base on the array lenght 
//--- in order to avoid printing the last line
	if(i < 21){
		document.write("<table width='96%' border='0' align='center' cellpadding='0' cellspacing='10'>")
		document.write("<tr>")
		document.write("<td align='center' bgcolor='#000000' width='1px' valign='middle'><img src='"+ h_line +"' alt='Horizontal Line'></td>")
		document.write("</tr>")
		document.write("</table>")
	}//if


}//for





//document.write(i)
//document.write("<br>")
//document.write(pictures.length)


//-->
