$(function () {
	var tabContainers = $('div.tabs1 > div');
	tabContainers.hide().filter(':first').show();
			
	$('#left_menu a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('#left_menu a').removeClass('selected');
		$(this).addClass('selected');
		return false;
	}).filter(':first').click();
});
$(function () {
    var tabContainers = $('div.tabs2 > div');
    tabContainers.hide().filter(':first').show();
            
    $('#right_menu a').click(function () {
        tabContainers.hide();
        tabContainers.filter(this.hash).show();
        $('#right_menu a').removeClass('selected');
        $(this).addClass('selected');
        return false;
    }).filter(':first').click();
});
