Cufon.replace('h1, h2, #pages-nav h4, .sideout-nav li a span, #blogroll h4, #main h3, #main h4, #main h5');



$(document).ready(function(){
	$('#affiliates ul').innerfade({
					speed: 750,
					timeout: 5700,
					type: 'random',
					containerheight: '120px'
				});
				
				$('#sponsors ul').innerfade({
								speed: 750,
								timeout: 5200,
								type: 'random',
								containerheight: '120px'
							});				
				
				
	
	$("#header ul ul").hide();
	
	// Thanks to:  http://jelaniharris.com/2008/adding-a-delay-to-jquery-functions/
	// this is a replacement for the hoverIntent plugin that does not work in all browsers.
	var display_timeout = 0;
		$("#header").hover(function () {
 
		if(display_timeout != 0) {
				clearTimeout(display_timeout);
		}
 
        // save a reference to 'this' so we can use it in timeout function
		var this_element = this;
                display_timeout = setTimeout(function() {
				display_timeout = 0;
				// perform things with this_element here buy referencing it like $(this_element)
				//if (!$(this_element).hasClass('magic')) {
					//performRollinMagic();
					$(this_element).animate( { "height": "145" });
					$("#header .container").animate( { "height": "145" });
					$("#header ul ul").fadeIn();
				//}
			}, 500);
 
	},
		function () {
			if(display_timeout != 0) {
				clearTimeout(display_timeout);
			}
			//performRolloutStuff();
			$(this).animate( { "height": "45" });
			$("#header .container").animate( { "height": "45" });
			$("#header ul ul").hide();
		}
);
	
// Old header hover code that was way too sensitive

// 	$("#header").hover( function () {
// 		$(this).animate( { "height": "145" });
// 		$("#header .container").animate( { "height": "145" });
// 		$("#header ul ul").fadeIn();
// 	}, function () {
// 		$(this).animate( { "height": "45" });
// 		$("#header .container").animate( { "height": "45" });
// 		$("#header ul ul").hide();
// 	});
	


	$("table.calendar tbody tr").each(function(index) {
			// add a class of "right" to Friday & Saturday so tooltips stay onscreen
			$(this).find("td:gt(3)").addClass("right");
		});


		// popups
		$("table.calendar .event a").hover(function() {

			// one for IE6, one for everybody else
			if ($.browser.msie && $.browser.version == 6.0) {
				var bottomPad = $(this).parents("td").outerHeight() + 5;
			}
			else {
				var bottomPad = $(this).outerHeight() + 18;
			}

			$(this).next(".tooltip").css('bottom', bottomPad).fadeIn(300);
		}, function() {
			$(this).next(".tooltip").fadeOut(100);
		});	
});

(function($) {

    $.fn.innerfade = function(options) {
        return this.each(function() {   
            $.innerfade(this, options);
        });
    };

    $.innerfade = function(container, options) {
        var settings = {
        		'animationtype':    'fade',
            'speed':            'normal',
            'type':             'sequence',
            'timeout':          2000,
            'containerheight':  'auto',
            'runningclass':     'innerfade',
            'children':         null
        };
        if (options)
            $.extend(settings, options);
        if (settings.children === null)
            var elements = $(container).children();
        else
            var elements = $(container).children(settings.children);
        if (elements.length > 1) {
            $(container).css('position', 'relative').css('height', settings.containerheight).addClass(settings.runningclass);
            for (var i = 0; i < elements.length; i++) {
                $(elements[i]).css('z-index', String(elements.length-i)).css('position', 'absolute').hide();
            };
            if (settings.type == "sequence") {
                setTimeout(function() {
                    $.innerfade.next(elements, settings, 1, 0);
                }, settings.timeout);
                $(elements[0]).show();
            } else if (settings.type == "random") {
            		var last = Math.floor ( Math.random () * ( elements.length ) );
                setTimeout(function() {
                    do { 
												current = Math.floor ( Math.random ( ) * ( elements.length ) );
										} while (last == current );             
										$.innerfade.next(elements, settings, current, last);
                }, settings.timeout);
                $(elements[last]).show();
						} else if ( settings.type == 'random_start' ) {
								settings.type = 'sequence';
								var current = Math.floor ( Math.random () * ( elements.length ) );
								setTimeout(function(){
									$.innerfade.next(elements, settings, (current + 1) %  elements.length, current);
								}, settings.timeout);
								$(elements[current]).show();
						}	else {
							alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');
						}
				}
    };

    $.innerfade.next = function(elements, settings, current, last) {
        if (settings.animationtype == 'slide') {
            $(elements[last]).slideUp(settings.speed);
            $(elements[current]).slideDown(settings.speed);
        } else if (settings.animationtype == 'fade') {
            $(elements[last]).fadeOut(settings.speed);
            $(elements[current]).fadeIn(settings.speed, function() {
							removeFilter($(this)[0]);
						});
        } else
            alert('Innerfade-animationtype must either be \'slide\' or \'fade\'');
        if (settings.type == "sequence") {
            if ((current + 1) < elements.length) {
                current = current + 1;
                last = current - 1;
            } else {
                current = 0;
                last = elements.length - 1;
            }
        } else if (settings.type == "random") {
            last = current;
            while (current == last)
                current = Math.floor(Math.random() * elements.length);
        } else
            alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');
        setTimeout((function() {
            $.innerfade.next(elements, settings, current, last);
        }), settings.timeout);
    };

})(jQuery);

// **** remove Opacity-Filter in ie ****
function removeFilter(element) {
	if(element.style.removeAttribute){
		element.style.removeAttribute('filter');
	}
}
