// --------------------- Continual Page Animations --------------------------

$(document).ready( function(){ 

	/* Tabbed Navigation */		
	$("#tabbed-nav li.active").each(function(i){
		$(this).css("top", "0px");
			$(this).mouseover(function(){
					$(this).stop().animate({ top: "10px"}, 100);
					}),
			$(this).mouseout(function(){
					$(this).stop().animate({ top: "0px"}, 100);
				});
			});
	
});
