// JavaScript Document

/*$(function() {
// OPACITY OF BUTTON SET TO 50%
$("#scheduleNowTop img").css("opacity","0.7");
		
// ON MOUSE OVER
$("#scheduleNowTop img").hover(function () {
										  
// SET OPACITY TO 100%
	$(this).stop().animate({
	opacity: 1.0
	}, "slow");
	},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 50%
	$(this).stop().animate({
	opacity: 0.7
	}, "slow");
});
});*/



$(document).ready(function() {
       $("#nav a").wrapInner("<span></span>");
       $("#nav a span").css({"opacity" : 0});

       $("#nav a").hover(function(){
               $(this).children("span").animate({"opacity" : .5}, 400);
       }, function(){
               $(this).children("span").animate({"opacity" : 0}, 400);
       });	
});


$(document).ready(function() {
    $('#banner_image').fadeIn(1500);
});

