// JavaScript Document

$(document).ready(function(){  
						   
	//Testimonial Rotator
	$('#testimonial_rotation').innerfade({
		speed: 'slow',
		timeout: 5000,
		type: 'random',
		containerheight: '90px'
	});
	
	// NAV ---------- /
	$(".menu a").hover(function() {
		$(this).next("em").show();
	}, function() {
		$(this).next("em").hide();
	});
		// sub nav items --------- /
		$("em.sub01").hover(function() {
			$("em.sub01").show();
		}, function() {
			$(this).hide();
		});
		
		$("em.sub02").hover(function() {
			$("em.sub02").show();
		}, function() {
			$(this).hide();
		});
		
		$("em.sub03").hover(function() {
			$("em.sub03").show();
		}, function() {
			$(this).hide();
		});
		
		$("em.sub04").hover(function() {
			$("em.sub04").show();
		}, function() {
			$(this).hide();
		});

});
