// JavaScript Document
$(document).ready(function(){
			$(function() { 
				$(".btnBackNumber a").css("opacity","0");
				$(".btnBackNumber a").hover( 
					function () {
						$(this).stop().animate({opacity: 1}, 'slow');},
					function () {
						$(this).stop().animate({opacity: 0}, 'slow');}
				);

				$(".btnCast a").css("opacity","0");
				$(".btnCast a").hover( 
					function () {
						$(this).stop().animate({opacity: 1}, 'slow');},
					function () {
						$(this).stop().animate({opacity: 0}, 'slow');}
				);

				$(".btnContact a").css("opacity","0");
				$(".btnContact a").hover( 
					function () {
						$(this).stop().animate({opacity: 1}, 'slow');},
					function () {
						$(this).stop().animate({opacity: 0}, 'slow');}
				);

			});
		});
