$(function () {
    var tabContainers = $('#content > div');
    
	tabContainers.hide().filter(':first').show();
	
	$('#mainNav ul a').click(function () {
		tabContainers.hide().filter(this.hash).fadeIn('slow');
		
        $('#mainNav ul a').removeClass('currentTab');
        $(this).addClass('currentTab');
        
        return false;
    });
});