jQuery.noConflict();
jQuery(document).ready(function(){ 

	jQuery("#quote").hover( function(){ jQuery
		(this).animate({ height: "65px" }, 200);
	}, function(){ jQuery
		(this).animate({ height: "42px" }, 200);
	});
	
	jQuery("#order").hover( function(){ jQuery
		(this).animate({ height: "65px" }, 200);
	}, function(){ jQuery
		(this).animate({ height: "42px" }, 200);
	});
	
	jQuery("#ship").hover( function(){ jQuery
		(this).animate({ height: "65px" }, 200);
	}, function(){ jQuery
		(this).animate({ height: "42px" }, 200);
	});

});
