var the_widths = ["592","592","592","592"];

(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
        };
        var ifchanger = 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") {
            this.ifchanger = 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 ) );
				this.ifchanger = 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 ) );
								this.ifchanger = 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\'');
						}
				}
    };

    var sidecounter = 0;
    $.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]);
						});
			// right here, slide the arrow, change the menu
		    var left_space = (current*52);
			if(current==0) {
			    var title_id = 4;
			} else {
			    var title_id = current;
			}
			n_title_id = current+1
			title_id = '#the'+title_id.toString()+'title';
			n_title_id = '#the'+n_title_id.toString()+'title';
			jQuery("#the_arrow").animate({ top:left_space.toString()+"px" }, 300);
			jQuery(title_id).children('a').css("font-size","16px");
			jQuery(title_id).children('a').css({"height":"27px"});
			jQuery(title_id).children('a').css("color","#f9fc95");
			jQuery(title_id).children('a').css("background","none");            
			jQuery(n_title_id).children('a').animate({"height":"27"}, 300);
			jQuery(n_title_id).children('a').css("color","#fff");
			jQuery(n_title_id).children('a').css("background","transparent url(/Images/indexImages/rotatingBanner/downBKG.gif) repeat-x top");
			jQuery(n_title_id).children('a').css("font-size","20px");
        } 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\'');
        this.ifchanger = 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');
	}
}

jQuery(document).ready(function() {
    // Gray, Comment this out to stop banner rotation on main
	if(jQuery('ul#point-main').attr('id')) {
		jQuery('ul#point-main').innerfade({
			speed: 1000,
			timeout: 8000,
			type: 'sequence',
			containerheight: '222px'
		});
	}
    // Stop commenting out here

	jQuery('.afeaturetitle').children('a').attr('href', 'javascript:void(0);')
	jQuery('.afeaturetitle').children('a').click(function() {
		clearTimeout(jQuery.innerfade.ifchanger);
		for(i=1;i<5;i++) {
			jQuery('#the'+i+'feature').css("display", "none");
			jQuery('#the'+i+'title').children('a').css("font-size","16px");
			jQuery('#the'+i+'title').children('a').css({"width":"592px" });
			jQuery('#the'+i+'title').children('a').css("color","#f9fc95");
			jQuery('#the'+i+'title').children('a').css("background","none");
		}
		jQuery('#the'+(jQuery(this).attr('rel'))+'feature').css("display", "block");
		
		var a_left_space = ((jQuery(this).attr('rel')-1)*52);
		jQuery("#the_arrow").animate({ top:a_left_space.toString()+"px" }, 300);
		jQuery(this).animate({ "height":"27px" }, 300);
		jQuery(this).css("color","#fff");
		jQuery(this).css("background","transparent url(/Images/indexImages/rotatingBanner/downBKG.gif) repeat-x top");
		jQuery(this).css("font-size","16px");
	    clearTimeout(jQuery.innerfade.ifchanger);
	});
	
}); 

var mv_testing = false;