/*

*/
	/* Top-bar effect */

	$(document).ready(function(){
		$("#top-bar a").stop().fadeTo("slow", 0.5);
		$("#top-bar li a").hover(
			function(){$(this).stop().fadeTo("slow", 1.0);},
			function(){$(this).stop().fadeTo("slow", 0.5);});
	});
	
	/* Sidebar main navigation effect */
	
	$(document).ready(function() {
		$('a.nudge').hover(function() { //mouse in
			$(this).animate({ paddingLeft: '20px' }, 400);
		}, function() { //mouse out
			$(this).animate({ paddingLeft: '40px' }, 400);
		});
	});
