
$(document).ready(function () {

    
	/*$('.photos#home a img').hover_caption();*/
	
	$("#nav a").hover(function() {
		$(this).animate({ backgroundColor: "#ffffff", color: "#a5a5a5" }, 600);
	},function() {
		$(this).animate({ backgroundColor: "#e5e5e5", color: "#7b7b7b" }, 400);
	});	
	
	$("body").mousewheel(function(event, delta) {
		this.scrollLeft -= (delta * 30);
		event.preventDefault(); 
	});

		      
 
 	$("#nav ul li a").hover(function() {
      	$(this).stop().animate({ backgroundColor: "#ffffff", color: "#222222" }, '700');
    },
    function() {
      	$(this).stop().animate({ backgroundColor: "#e5e5e5", color: "#7b7b7b" }, '700');
    });	 
          
	$(".photos#home a.title").hover(function() {
      	$(this).stop().animate({opacity: "1"}, '700');
    },
    function() {
      	$(this).stop().animate({opacity: "0"}, '700');
    });	
   
	/*$('#nav')
    	.animate({opacity: '1'}, 1000)
    	.animate({opacity: '0'}, 1000);
    	        
	$("#nav").hover(function() {
      	$(this).stop().animate({opacity: "1"}, '700');
    },
    function() {
      	$(this).stop().animate({opacity: "0"}, '700');
    });	
   */
});	

