﻿$(function() {
	$('#tabs p').hide();
	$('#tabs h3 a').hover(function() {
		$(this).parent().next().slideDown();
	},function(){
		$(this).parent().next().slideUp();
	});
})
