$(document).ready(function(){

	// Tabs (jQuery Tools)
	$("div#nav ul").tabs("div#content > div", {effect: 'fade', fadeInSpeed: 300,history:true});
	
	// Rollover captions
	$('.article').hover(function(){
		$(".caption", this).stop().animate({top:'75px'},{queue:false,duration:300});
	}, function() {
		$(".caption", this).stop().animate({top:'200px'},{queue:false,duration:300});
	});

});