$(document).ready(function() {
						   
	// Sidebar Animation
	
	$('#sideShow').innerfade({
		speed: 1000,
		timeout: 5000,
		type: 'random',
		containerheight: '327px'
	});	

	// Client Side Nav highlighting
	
	var path = location.pathname.substring(1);
	if ( path )
	 $('div.menu a[@href$="' + path + '"]').attr('class', 'selected');		
	
});