$(function () {
	$('#nav').droppy();


	$(".door").hover(
		function(){
			$(this).parent('.movie').css('background', 'url(../../movie/images/img_door_on.gif) no-repeat');
		},
		function(){
			$(this).parent('.movie').css('background', 'url(../../movie/images/img_door.gif) no-repeat');
		}
	);

	$('.door').tipsy({
		fade: true,
		gravity: 's',
		html: true,
		title: 'alt'
	});

});

