/*
	Theme Name: Awakesoon - Under Construction Template
	Theme URI: http://demo.enovastudio.org/awake/
	Author: Enova Studio
	Author URI: http://enovastudio.org
	Themeforest: http://themeforest.net/user/Enova
	
	Script Description: Navigation bars effects.
*/
	/* 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);
		});
	});
