

jQuery(document).ready(function(){

	$("#cart").hover(
		function(){
			$("#cartText2").animate({opacity: "show"}, "normal");

		},
		function(){
            $("#cartText2").animate({opacity: "hide"}, "normal");

		});
});
