

$(function() {
		// set opacity to nill on page load
		$("#let_btn_more p").css("opacity","0");
		// on mouse over
		$("#let_btn_more p").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 'slow');
		});
	});


$(function() {
		// set opacity to nill on page load
		$("ul#top_banner p").css("opacity","0");
		// on mouse over
		$("ul#top_banner p").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 'slow');
		});
	});



$(function() {
		// set opacity to nill on page load
		$("ul.rank_btn p").css("opacity","0");
		// on mouse over
		$("ul.rank_btn p").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 'slow');
		});
	});

