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

	  	 	$('.thecottage a').hover(function(){
		 	$(this).stop().animate({'opacity' : '0'}, 400);
		 	}, function(){$(this).stop().animate({'opacity' : '1'}, 400);});
				  
		 		$('.littlehut a').hover(function(){
		 		$(this).stop().animate({'opacity' : '0'}, 400);
		 		}, function(){$(this).stop().animate({'opacity' : '1'}, 400);});
				
					$('.daisy a').hover(function(){
		 			$(this).stop().animate({'opacity' : '0'}, 400);
		 			}, function(){$(this).stop().animate({'opacity' : '1'}, 400);});

});
