// JavaScript Document
<!-- Let's do the animation -->
	$(function() {
		// set opacity to nill on page load
		$(".unselect").css("opacity","0");
		// on mouse over
		$(".unselect").hover(function() {
		//	 animate opacity to full
			$(this).stop().animate({
				opacity: 1
				//backgroundPosition:"50% 50%"
			},"slow");
		},
		
		
		// on mouse out
		function() {
		//	 animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			},"slow");
		});
		
		
	});
	
	
	$(function(){
		$(".slowshow").hide();
		$(".slowshow").slideDown(1500);
		});

	$(function(){
		$(".fadeshow").hide();
		$(".fadeshow").fadeIn(2000);
		});
	
