$(document).ready(function(){
	
	// =HEADER
	$('#header a.logo').hover(
		function(){
			$(this).find('img').fadeTo(200, 0.5).fadeTo(200, 1);
		},
		function(){
			$(this).find('img').fadeTo(200, 1);
		}
	);
	
	// =PHOTOS
	$('.photos h3').css('opacity', 0.8);
	$('.photos li').hover(
		function(){
			$(this).find('h3').fadeIn(400);
			$(this).find('img').fadeTo(300, 0.8).fadeTo(300, 1);
		},
		function(){
			$(this).find('h3').fadeOut(10);
		}
	);


	// =COMMENTS
	$('.commentlist li').hover(
		function(){
			$(this).find('.comment_meta').fadeIn(400);
		},
		function(){
			$(this).find('.comment_meta').fadeOut(10);
		}
	);
});
