$(document).ready(function() {
   if ($.browser.msie && $.browser.version < 7) return;		   
   $('.navigation a').each(function(index){
   		var $hover = 'hover_' + index;
   		$(this).append('<span class="' + $hover + '" />');
   		$('.' + $hover + '').css({opacity : 0}).hover(function () {
				$(this).stop().fadeTo(350, 1);
			}, function() {
			 	 $(this).stop().fadeTo(350, 0);
			});
   });
   
   $('.content_middle a').hover(function(){ 
   		$(this).animate({
   			color: '#423939' 
   		}, 300 ); 
   }, function(){ 
   		$(this).animate({
   			color: '#272424'
   		}, 300);
   });
   
   $('#footer ul li a').hover(function(){ 
   		$(this).animate({
   			color: '#FFF' 
   		}, 300 ); 
   }, function(){ 
   		$(this).animate({
   			color: '#d7d7d7'
   		}, 300);
   });
   
   $("a[rel=photos]").fancybox({
		'titleShow'		: true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
   
});
