$(document).ready(function(){
	
	/* ------------------------------------------------- */
	/* INDIVIDUAL GALLERY HOVERS                         */
	/* ------------------------------------------------- */
		
	$('.thumb-image').find("img").animate({opacity:.75},{duration:0});
	$('.list-block').find("img").animate({opacity:.75},{duration:0});
	$('.home-thumb').find("img").animate({opacity:.90},{duration:0});
	
	// List View Thumbnail Hovers
	$('.list-block').hover(function() {
		$(this).find("img").animate({opacity:1},{queue:false,duration:100});
	},function() {
		$(this).find("img").animate({opacity:.75},{queue:false,duration:100});
	});

	// Thumb View Thumbnail Hovers
	$('.thumb-image').hover(function() {
		$(this).find("img").animate({top:-3,opacity:1},{queue:false,duration:100});
	},function() {
		$(this).find("img").animate({top:0,opacity:.75},{queue:false,duration:100});
	});

	// Home Thumb View Thumbnail Hovers
	$('.home-thumb').hover(function() {
		$(this).find("img").animate({marginTop:5,opacity:1},{queue:false,duration:100});
	},function() {
		$(this).find("img").animate({marginTop:10,opacity:.90},{queue:false,duration:100});
	});
	
});
