// JavaScript Document
	
$(document).ready(function() {
$(".fader").hover(function(){
    $(this).animate({opacity: "0.8"}, "fast")
      }, function() {
	//	 $(this).animate( { width:"151px" }, 100 );
	 $(this).animate({opacity: "1.0"}, "fast")
    });

	//3
		$('.short-1').hover(function(){
		$('.short-1nav').addClass('short-hover');
	}, function() {
		$('.short-1nav').removeClass('short-hover');
		// nothing to see here.
    });

	//2
		$('.short-2').hover(function(){
		$('.short-2nav').addClass('short-hover');
	}, function() {
		$('.short-2nav').removeClass('short-hover');
		// nothing to see here.
    });
   
   //3
		$('.short-3').hover(function(){
		$('.short-3nav').addClass('short-hover');
	}, function() {
		$('.short-3nav').removeClass('short-hover');
		// nothing to see here.
    });
    
    //4
		$('.short-4').hover(function(){
		$('.short-4nav').addClass('short-hover');
	}, function() {
		$('.short-4nav').removeClass('short-hover');
		// nothing to see here.
    });
    
    
    //5
		$('.short-5').hover(function(){
		$('.short-5nav').addClass('short-hover');
	}, function() {
		$('.short-5nav').removeClass('short-hover');
		// nothing to see here.
    });


});

