$(function() {
	$('input').each(function() { $(this).addClass(this.type); });
	$('.rollover').simpleImageRollover();
	
	$('#nav').droppy();

    setInterval(function() {
        $('#banner .slideshow li:last').animate({opacity: 0}, 1500, function() {
           $(this).remove().prependTo('#banner .slideshow').css({opacity: 1});
        });
    }, 5000);
	
	$('#top-image').lightBox();
	
	$(window).load(function() {
		var iconWidth = $('#footer .partners').width();
		if ($('#footer .partners li').length > 1) {
		    setInterval(function() {
    			$('#footer .partners li:last').animate({left: -iconWidth}, function() {
    				$(this).remove().prependTo('#footer .partners').css({left: 0});
    			});
    		}, 5000);
		}
	});
	
	var $inc = $('#incentives');
	if ($inc.find('li').length > 1) {
		setInterval(function() {
			$inc.find('li:last').animate({left: -225}, function() {
				$(this).remove().css({left: 0}).prependTo($inc);
			});
		}, 7500);
	}
	
});