$(document).ready(function() {
	$("#flickr_badge_wrapper").mouseout(function() {
		$("#flickr_badge_image5").stop();
		$("#flickr_badge_image5").animate({
			height: "160px"
		}, 1100 );
	});
	$(".flickr_badge_image").mouseover(function() {
		$("#flickr_badge_image5").stop();
		$("#flickr_badge_image5").animate({
			height: "40px"
		}, 1100 );
		$(this).stop();
		$(this).animate({
			height: "160px"
		}, 1100 );
	});
	$(".flickr_badge_image").mouseout(function() {
		$(this).stop();
		$(this).animate({
			height: "40px"
		}, 1100 );
	});
});
