// JavaScript Document
jQuery(document).ready(function(){
	$("#capes li").hover(
		function(){
			$(this).find("p").attr({
				"style": 'display:inline'
			});
			$(this).find("p").animate({opacity: 2, top: "12"}, {queue:false, duration:200});
		}, 
		function(){
			$(this).find("p").animate({opacity: 0, top: "12"}, {queue:false, duration:200, complete: function(){
								$(this).attr({"style": 'display:none'});
							}
						}
			);
		});
});
