$(document).ready( function(){
	textReplacement($('#search-text'));
	
	
	$('.sidenav > li').hover(flyout, flyin);
	
	function flyout(){
		$(this).find('a:first').addClass('selected');
		$(this).find('ul').show();
	}
	
	function flyin(){
		$(this).find('a:first').removeClass('selected');
		$(this).find('ul').hide();
	}
	
	
});