$(document).ready(function() {
	showCase = function() {
		var menu = $("#showcase > ul").find("li")
		var images = $("#showcase > ol").find("li:first-child")
		var sli = parseInt(images.css("height"))
		menu.each(function(i) {
			$(this).mouseover(function() {
				images.css("margin-top", -(sli*i))
				menu.each(function() {
					$(this).removeClass();
				});
				$(this).addClass("active");
			});
		});
	};
	showCase();
});
