<!--

/* Copyright 2007, Gryphon Solutions, Inc
	Author: Daelin Lunaeri
	email: daelin@gryphonsolutionsinc.com

	Last updated: Jun3-08 dl
	*/

var supportsPNG = false;

var agent = navigator.userAgent.toLowerCase();

if (agent.match("msie 7.0") != null)
	supportsPNG = true;
	
if (agent.match("firefox") != null)
	supportsPNG = true;
	
function writePNG()
{
	document.write(""+
	
	"<img id='banner' src='images/td_banner1.png' alt='Trail Dust Steak House'></img>"+

	"<a href='index.html'>"+
		"<img id='homebutton' src='images/homebutton.png' alt='Home'></img></a>"+

	"<a href='menu.html'>"+
		"<img id='menubutton' src='images/menubutton.png' alt='Menu'></img></a>"+

	"<a href='locations.html'>"+
		"<img id='locationsbutton' src='images/locationsbutton.png' alt='Locations'></img></a>"+

	"<a href='reservation.jsp'>"+
		"<img id='reservationsbutton' src='images/reservationsbutton.png' alt='Reservation'></img></a>"+

	"<a href='entertainment.html'>"+
		"<img id='entertainmentbutton' src='images/entertainmentbutton.png' alt='Entertainment'></img></a>"+

	"<a href='catering.html'>"+
		"<img id='cateringbutton' src='images/cateringbutton.png' alt='Catering &amp Banquets'></a>"+


	"");
}



function writeGIF()
{
	document.write(""+
	
	"<img id='banner' src='images/td_banner.gif' alt='Trail Dust Steak House'></img>"+

	"<a href='index.html'>"+
		"<img id='homebutton' src='images/homebutton.gif' alt='Home'></img></a>"+

	"<a href='menu.html'>"+
		"<img id='menubutton' src='images/menubutton.gif' alt='Menu'></img></a>"+

	"<a href='locations.html'>"+
		"<img id='locationsbutton' src='images/locationsbutton.gif' alt='Locations'></img></a>"+

	"<a href='reservation.jsp'>"+
		"<img id='reservationsbutton' src='images/reservationsbutton.gif' alt='Reservations'></img></a>"+

	"<a href='entertainment.html'>"+
		"<img id='entertainmentbutton' src='images/entertainmentbutton.gif' alt='Entertainment'></img></a>"+

	"<a href='catering.html'>"+
		"<img id='cateringbutton' src='images/cateringbutton.gif' alt='Catering &amp Banquets'></a>"+

	

	"");
}


//-->