var timer_id = 0;
var active_tab = 2;


function ma_init() {
	ma_hide_all();
	$('#ma_1_img').show();
	$('#ma_1_desc').show();
	$('#ma_1').addClass('highlight');
	start_loop();
}

function start_loop() {
	timer_id = setInterval('ma_loop()', 4000);
}

function stop_loop() {
	clearInterval(timer_id);
}

function ma_loop() {
	if(active_tab > max_tabs) {
		active_tab = 1;
	}
	ma_hide_all();
	$('#ma_'+active_tab+'_img').fadeIn('slow');
	$('#ma_'+active_tab+'_desc').show();
	$('.ma_link').removeClass('highlight');
	$('#ma_'+active_tab).addClass('highlight');
	active_tab = active_tab + 1;
}

function ma_hide_all() {
	$('.ma_img').hide();
	$('.ma_desc').hide();
}

$(window).bind('load', function() {
	ma_init();
	
	$('.ma_link').click(function() {
		stop_loop();
		$('.ma_link').removeClass('highlight');
		$(this).addClass('highlight');
		id = $(this).attr('id');
		ma_hide_all();
		$('#'+id+'_img').show();
		$('#'+id+'_desc').show();
		return false;
	});
});
	
$(document).ready(function() {
	ma_hide_all();
});