
function introOnAfter() { 
	var href = jQuery(this).children('span').attr('title');
	jQuery('.Go').attr('href', href);
}

jQuery(document).ready(function(){

	jQuery(".Intro .Images").cycle({
		    fx: 'scrollHorz',
		    timeout: 10000,
		    next: '#Nav .Right',
		    prev: '#Nav .Left',
		    after:   introOnAfter 
	});

	jQuery(".MainProduct .Images").cycle({
		    fx: 'scrollHorz',
		    timeout: 0,
		    next: '#NavProduct .Right',
		    prev: '#NavProduct .Left'
	});

	jQuery(".Slider .Images").cycle({
		    fx: 'scrollHorz',
		    timeout: 0,
		    next: '#NavSlider .Right',
		    prev: '#NavSlider .Left'
	});

	jQuery(".RightColumn ul li.not(.Last):last").addClass('Last');

});


