$(document).ready(function(){
	$('#b_photographers .photographer').hover(function(){
		$(".cover", this).stop().animate({top:'-196px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
	});
	$('#b_photographers .photographer').click(function(){
		window.location.href = $(this).children('a').attr('href');
	});
	$('.fadeto').mouseover(function(){
		$(this).fadeTo('fast',0.80);
	});
	$('.fadeto').mouseout(function(){
		$(this).fadeTo('fast',1);
	});
});

