$(document).ready(function(){
	
	$('.tab_content').hide();
	$('.tab_content').load($('.tabs a.here').attr('href'), [], function(){$(window).resize();});
	$('.tab_content').slideDown('slow');
	
	$('.tabs a').click(function(e){
		e.preventDefault();
		
		var thisTab = $(this);
		
		$('.tab_content').slideUp('slow', function(){
		
			$('.tabs a').removeClass('here');
			$('.tab_content').load(thisTab.attr('href'), [], function(){
				$(window).resize();
				thisTab.addClass('here');
				$('.tab_content').slideDown('slow');
			});
		});
	});
});
		
