$(document).ready(function()
	{

		$("li.descThumb01").hover(
			function() {
				$(".descriptions").stop().animate({"top": "-36px"}, "fast");
			},
			function() {
				$(".descriptions").stop().animate({"top": "0"}, "fast");
			}
		);

		$("li.descThumb02").hover(
			function() {
				$(".descriptions").stop().animate({"top": "-72px"}, "fast");
			},
			function() {
				$(".descriptions").stop().animate({"top": "0"}, "fast");
			}
		);
		
		$("li.descThumb03").hover(
			function() {
				$(".descriptions").stop().animate({"top": "-108px"}, "fast");
			},
			function() {
				$(".descriptions").stop().animate({"top": "0"}, "fast");
			}
		);

		$("li.descThumb04").hover(
			function() {
				$(".descriptions").stop().animate({"top": "-144px"}, "fast");
			},
			function() {
				$(".descriptions").stop().animate({"top": "0"}, "fast");
			}
		);

		$("li.descThumb05").hover(
			function() {
				$(".descriptions").stop().animate({"top": "-180px"}, "fast");
			},
			function() {
				$(".descriptions").stop().animate({"top": "0"}, "fast");
			}
		);

	});
