$(document).ready(function(){
	if ($.browser.msie) {
		$('#imageContainerText').labeleffect({effect: 'shadow', shadowOffset: 2, shadowColor: '#555', shadowFill: true});
		$('#imageContainerText').textShadow({
			x:      0, 
			y:      0, 
			radius: 2,
			color:  "black"
		});
	}

});

$(function() {
	$('#imageContainer').cycle({
		// http://jquery.malsup.com/cycle/options.html
		fx: 'fade',
		cleartype: !$.support.opacity,
		cleartypeNoBg: true,
		pause: 1,
		random: 0,
		timeout: 7000,
		speed: 700,

		before: function() {
			$('#imageContainerText').animate({
				right: "-=800px"
			}, 700);
		},

		after:	 function() {
			$('#imageContainerText').html(this.alt);
			if ($.browser.msie) {
				$('#imageContainerText').textShadowRemove();
				$('#imageContainerText').labeleffect('destroy');
				$('#imageContainerText').labeleffect({effect: 'shadow', shadowOffset: 2, shadowColor: "#555", shadowFill: true});
				$('#imageContainerText').textShadow({
					x:      0, 
					y:      0, 
					radius: 2,
					color:  "black"
				});
			}
			$('#imageContainerText').animate({
				right: "+=800px"
			}, 800);
		}
	});
});

