var time = 10000;

$(function(){
	setTimeout('setupEvents()', 2000);
})

function setupEvents() {
	$(".entry_image img").each(function(){
		$(this)
			.bind("animation_down_complete", animateUp)
			.bind("animation_up_complete", animateDown)
			.trigger("animation_down_complete");
	});	
	
	$(".entry_image").bind("mouseenter", showPopup).bind("mouseleave", hidePopup);
}

function animateUp() {
	$(this).animate({"top": (-$(this).attr("height") + 200)  + "px"}, time, "linear", function() {
		$(this).trigger("animation_up_complete");
	});
}

function animateDown() {
	$(this).animate({"top": 0}, time, "linear", function() {
		$(this).trigger("animation_down_complete");
	});
}

function showPopup() {
	$(this).find(".entry_image_popup").show();
}

function hidePopup() {
	$(this).find(".entry_image_popup").hide();
}