$(function(){
	
	$('#gal_thumbs a').overlay({
		target: '#gallery',
		expose: '#000'
	}).gallery({
		speed: 800
	});
	
	$('#gal_thumbs a').hover(
		function(){
			$(this).children('.bw').children('.color').fadeIn('fast');
		},
		function(){
			$(this).children('.bw').children('.color').fadeOut('fast');
		}
	);

});
