 // Background color animation 
        $(document).ready(function(){
                $(".main_dnnmenu_rootitem_selected span").hover(function() {
                $(this).animate({ color: "#ffffff" }, 600);
        },function() {
                 $(this).animate({ color: "#136de1" }, 400);
        });
		

		
    // Fun with Color. Differnt font color each time hover
	 original = $('.main_dnnmenu_rootitem span').css('color');
	$('.main_dnnmenu_rootitem span').hover(function() { //mouseover
		var col = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
		$(this).animate({ color: col}, 600);
	},function() { //mouseout
		$(this).animate({ color: '#ffffff'},500);
	});
	
		 original = $('.main_dnnmenu_submenu span').css('color');
	$('.main_dnnmenu_submenu span').hover(function() { //mouseover
		var col = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
		$(this).animate({ color: col}, 600);
	},function() { //mouseout
		$(this).animate({ color: '#a3a3a3'},500);
	});
});
fancybox = true;

$(document).ready(
		function(){
			$('#news').innerfade({
				animationtype: 'slide',
				speed: 750,
				timeout: 3000,
				type: 'random',
				containerheight: '20px'
			});
	});

