$(document).ready(function() {

	$('div#main').show();
	$('#animBox').fadeIn(1000);
	$('#monthlyOfferDiv').fadeIn(1000);
	
	$('#aMonthlyOfferLink').mouseover(
		function()
		{
			if($.browser.msie && jQuery.browser.version.substr(0,1)=="6")
				$('#monthlyOfferDesc').show();
			else
				$('#monthlyOfferDesc').show('fold', {}, 300);
		}
	).mouseleave(
		function()
		{
			if($.browser.msie && jQuery.browser.version.substr(0,1)=="6")
				$('#monthlyOfferDesc').hide();
			else
				$('#monthlyOfferDesc').fadeOut(500);
		}
	);
	
	setInterval("slideSwitch('#animBox')", 5000);
});

function slideSwitch(gallery)
{
	var $active = $(gallery + ' img.active');
	
	if($active.length == 0)
		$active = $(gallery + ' img:last');
		
	var $next = $active.next().length ? $active.next() : $('#animBox_1');
	$active.addClass('last-active');
	
	$next.css({opacity: 0.0})
		.addClass('active')
		.animate({opacity: 1.0}, 1000,
			function()
			{
				$active.removeClass('active last-active');
			}
		);
}