$(document).ready(function(){
	
	// ***** highlight current nav list elements
	$("#topnav ul li").find('a[href="'+document.location.href+'"]').each(function() { 
		$(this).addClass("active");
	});

	$("#footer ul li").find('a[href="'+document.location.href+'"]').each(function() { 
		$(this).addClass("active");
	});
	
	$(".sidenav-list ul li").find('a[href="'+document.location.href+'"]').each(function() { 
		$(this).addClass("active");
	});

	// ***** HOME flash embed
	$('#flash').flash({
		src: '/swf/home.swf',
		width: 960,
		height: 400,
		background: '#ffffff',
		wmode: 'transparent'
	});
	
});