$(document).ready(function(){
	$('.curtainitem').hover(
		function() {
			$(this).find('.curtain').stop().animate(
				{'top': -679},
				250,
				'swing'
			);
			$(this).find('.title').stop().animate(
				{'bottom': 0},
				150
			);
			$(this).find('.nav').stop().animate(
				{'bottom': 0},
				250
			);
		},
		function() {
			$(this).find('.curtain').stop().animate(
				{'top': 0},
				700,
				'easeOutBounce',
				function() {
					$(this).parent().find('.title').css('bottom', '-206px');
					$(this).parent().find('.nav').css('bottom', '-150px');
				}
			);
		}
	);

	$('a.tooltip').click(function(event) {
		//event.preventDefault();
	});


	$('.tooltip').hover(
		function() {
			var tooltip = $('#' + $(this).attr('rel')).fadeIn('fast');
			//tooltip.css('top', $(this).position().top - 10).css('left', $(this).position().left + $(this).width());
		},
		function() {
			$('#' + $(this).attr('rel')).fadeOut('fast')
		}
	);
});
