$(document).ready(function(){

	$("#wrap img[title]").tooltip();

	var pos = $(this).offset();
	$(".imagePlace").hover(
	function() {
		var pos = $(this).offset();
		$(this).find('a').stop().animate({marginTop: -126}, 500, 'easeInOutSine');
	},
	function() {
		$(this).find('a').stop().animate({marginTop: 0}, 500, 'easeInOutSine');
	});
	
});
