$(document).ready(function(){
	
		<!-- WIDGETS -->
		$(".btn-slide").mouseover(function(){
			$("#widgets").slideToggle("slow");
			$(this).toggleClass("active"); return false;
		});
		
		<!-- MINI ICONS -->
		$(".icons a").hover(function() {											
			$(this).next("em").animate({opacity: "show", top: "-75"}, "slow");
		}, function() {
			$(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
		});
		
		<!-- INNER FADE -->
		$('#newsTicker').innerfade({
			animationtype: 'slide',
			speed: 750,
			timeout: 2000,
			type: 'random',
			containerheight: '1em'
		});
				
});
