$(document).ready(function(){
	$('ul#menu a').click(function() {
		var curChildIndex = $(this).parent().prevAll().length + 1;
		$(this).parent().parent().children('.selected').removeClass('selected');
		$(this).parent().addClass('selected');
		$(this).parent().parent().next('.tabs').children('.selected').slideUp('normal',function() {
			$(this).removeClass('selected');
			$(this).parent().children('div:nth-child('+curChildIndex+')').slideDown('normal',function() {
				$(this).addClass('selected');
			});
		});
		return false;								
	});
});