var maintenance = '<h1>Tire Tips &amp; Maintenance - Your Tires Are Important!</h1>'+
					'<p>Ensuring your tires are in good condition will not only ensure your safety, but it will also save you money!</p>'+
					'<p>Keeping your tires in good condition is essential for good vehicle handling, driving comfort, and fuel efficiency.</p>'+
					'<p class="info">Click on the link to find out more:</p>'+
					'<div>'+
						'<ul>'+
							'<li><a href="inflationpressure.php">Inflation Pressure</a></li>'+
							'<li><a href="treadwear.php">Tread Wear</a></li>'+
							'<li><a href="wheelalignment.php">Wheel Alignment</a></li>'+
							'<li><a href="balancing.php">Balancing</a></li>'+
							'<li><a href="tirerotation.php">Tire Rotation</a></li>'+
						'</ul>'+
					'</div>';
var home 		= '<h1>B.C.\'s Finest Tire Organization</h1>'+
					'<p>Excel Tire Centres Inc. is an organization of fiercely independent tire dealers located throughout British Columbia, Since its incorporation in 1984, Excel\'s goal is to bring people out of the long mega-store/warehouse lineups where individual care and knowledge is minimal, and keep them coming back to us for incomparable product knowledge and superior personalized attention. This is where new customers are new friends, and our many long-time customers are like family. Excel\'s success, remains as, in the past, due to our satisfied customers; they have kept Excel\'s reputation solid.</p>'+
					'<p class="indexfooter">You\'ll feel confident knowing you will get the right tire for the right price.</p>';
var currentpage = '';

$(document).ready(function(){
	currentpage = $('.content').attr('class').replace('content ');
	$(document).everyTime(20000,function(){
			$('.whitebg').children().remove();
			var a = $('.subnav > ul > li > a');
			
			if(currentpage == 'undefinedmaintenance'){
				$('.whitebg').append(home);
				currentpage = 'home';
				$('.content').removeClass('maintenance').addClass('about');
				$(a[0]).css('text-decoration','underline');
				$(a[1]).css('text-decoration','none');
			}else{
				$('.whitebg').append(maintenance);
				currentpage = 'undefinedmaintenance';
				$('.content').removeClass('about').addClass('maintenance');
				$(a[1]).css('text-decoration','underline');
				$(a[0]).css('text-decoration','none');
			}
										},0);
});