$(document).ready(function(){
 
	$("#ontime h2").hover(function() {
		$("#ontime p").stop(true, true).animate({opacity: "show", top: "482"}, "slow");
	}, function() {
		$("#ontime p").animate({opacity: "hide", top: "500"}, "fast");
	});
	
	$("#onspec h2").hover(function() {
		$("#onspec p").stop(true, true).animate({opacity: "show", top: "482"}, "slow");
	}, function() {
		$("#onspec p").animate({opacity: "hide", top: "500"}, "fast");
	});
	
	$("#onbudget h2").hover(function() {
		$("#onbudget p").stop(true, true).animate({opacity: "show", top: "482"}, "slow");
	}, function() {
		$("#onbudget p").animate({opacity: "hide", top: "500"}, "fast");
	});	
	
	$("#wereonit h2").hover(function() {
		$("#wereonit p").stop(true, true).animate({opacity: "show", top: "482"}, "slow");
	}, function() {
		$("#wereonit p").animate({opacity: "hide", top: "500"}, "fast");
	});
 
});