$(document).ready(function() {
	
	$('#mycarousel a').click(function () {
	$('#mycarousel a').removeAttr('class');
	$(this).attr('class','on');
	var sc_id = $(this).attr('id');
	var sel_div = '#tab_'+sc_id;
	$('#tab_content .selected_tab').attr('style','display: none;');
	$(sel_div).attr('style','display: block;');
		});

});
