// JavaScript Document

	$(document).ready(function(){

		$('.frame.caption').hover(function(){

			$('.wrap', this).stop().animate({top:'115px'},{queue:false,duration:400});

		}, function() {

			$('.wrap', this).stop().animate({top:'167px'},{queue:false,duration:760});

		});

	});
