function ieHover()
{
	var nav = document.getElementById("menu");
	if (nav)
	{
		var nodes = nav.getElementsByTagName("li");
		for (var i=0; i<nodes.length; i++)
		{
			nodes[i].onmouseover = function() 
			{
				this.className += " hover";
			}
			nodes[i].onmouseout = function()
			{
				this.className = this.className.replace(" hover", "");
			}
		}
	}
}

if (window.attachEvent && !window.opera){
	window.attachEvent("onload", ieHover);
}

var menu = '<ul id="menu"> \
					<li><a class="home" href="index.html">Home</a></li> \
					<li><a class="how" href="how-it-works.html">How It Works</a></li> \
					<li><a class="group" href="group-quote-request.html">Group Quote Request</a></li> \
					<li><a class="our" href="our-shows.html">Our Shows</a></li> \
					<li><a class="showtime" href="#">Showtime Reviews</a> \
                    	<ul> \
							<li><a href="trip-photos.html">Trip Photos</a></li> \
							<li><a href="testimonials.html">Testimonials</a></li> \
						</ul> \
                    </li> \
					<li><a class="about" href="#">About Us</a> \
                    	 <ul> \
							<li><a href="meet-our-team.html">Meet Our Team</a></li> \
							<li><a href="contact-us.html">Contact Us</a></li> \
						</ul> \
                    </li> \
				</ul> \
				<a class="link" href="javascript:bookmarksite(\'Showtime Sensations\', \'http://www.showtimesensations.com\')"><img src="images/ico-navigation-link.gif" alt="link" /></a> \
				<ul class="right-nav"> \
					<li><a class="refer" href="#">refer a friend</a></li> \
					<li><a class="bookmark" href="javascript:bookmarksite(\'Showtime Sensations\', \'http://www.showtimesensations.com\')">book this page</a></li> \
				</ul>';

var sidegraphic = '<div class="sidebar-top"> \
						<div class="sidebar-bottom"> \
							<div class="sidebar-text"> \
								<h2>Have a Group of 30 or more?</h2> \
								<p>Putting a trip together is easy. Let us show you how.</p> \
								<a class="link-sidebar" href="group-quote-request.html">Request A Quote</a> \
							</div> \
						</div> \
					</div>';

var bottom = '<div class="bottom-box-left"> \
						<h2>Who we work with:</h2> \
						<p>ShowTime Sensations, Inc. works with churches, auxiliaries, association fundraisers, corporations,  \
						Girl Scouts and other youth groups throughout the <strong>greater Philadelphia, Pennsylvania, Southern New Jersey Region and  \
						Delaware.</strong> </p> \
						<span>Have a group of 30 or more? We\'ve got you covered. <a href="contact-us.html">Contact us</a> today.</span> \
					</div> \
					<div class="bottom-box-right"> \
						<h2>Top 5 Benefits:</h2> \
						<ul class="bottom-box-list"> \
							<li>Get the best seats at the lowest prices</li> \
							<li>We offer EZ Time-deferred payments</li> \
							<li>On-board movies and raffle prizes</li> \
							<li>Free advertising flyer to help sell your trip</li> \
							<li>R/T Transportation to your location</li> \
						</ul> \
					</div>';

var footer = '<ul class="footer-list"> \
				<li><a href="index.html">Home</a></li> \
				<li><a href="how-it-works.html">How it Works</a></li> \
				<li><a href="group-quote-request.html">Group Quote Request</a></li> \
				<li><a href="our-shows.html">Our Shows</a></li> \
				<li><a href="trip-photos.html">Trip Photos</a></li> \
				<li><a href="testimonials.html">Testimonials</a></li> \
				<li><a href="meet-our-team.html">Meet Our Team</a></li> \
				<li><a href="#">Refer A Friend</a></li> \
				<li><a href="#">Bookmark this page</a></li> \
			</ul> \
			<p>Copyright &copy; 2009 Showtime Sensations, All rights reserved.</p>';
			
			

/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}