$(document).ready(function() {

	$('.right .image').cycle('fade');
	
	var products = '<li><a href="labels_decals.html">Labels / Decals</a>|</li><li><a href="signs_banners.html">Signs / Banners</a>|</li><li><a href="promo_items.html">Promo Items</a>|</li>	<li><a href="specialty_inks.html">Specialty Inks</a>|</li><li><a href="stencils.html">Stencils</a>|</li><li><a href="engraving.html">Engraving</a>|</li><li><a href="asset_id.html">Asset ID Tags</a>|</li><li><a href="tape.html">Tapes / Tapers</a>|</li><li><a href="pipe_marking.html">Industrial Pipe Marking</a>|</li><li><a href="nameplates.html">Nameplates / Stamps</a></li>';
	
	var about_fmp = '<li><a href="our_team.html">Our Team</a>|</li><li><a href="press.html">Press</a>|</li><li><a href="testimonials.html">Testimonials</a></li>';
	
	var empty = '';
	
	$('.nav a').mouseover(function() {
		activePage = $(this);
			$('.about, .products').removeClass('hover');
			$('.sub').removeClass('about');
			$('.sub').removeClass('products');
		if($(this).hasClass('about')){
			$('.products').removeClass('hover');
			$(this).addClass('hover');
			$('.sub').html(about_fmp);
			$('.sub').addClass('about');
		}
		else if($(this).hasClass('products')){
			$('.about').removeClass('hover');
			$(this).addClass('hover');
			$('.sub').html(products);
			$('.sub').addClass('products');
		}
		else {
			$('.about, .products').removeClass('hover');
			$('.sub').html(empty);
			$('.sub').html('');
		}
	});
	
	
	
});