jQuery( document ).ready( function($) {
	$('.box .top').hover(
		function(){ 
			var parent = $(this).parent().parent();
			$('.box').css({ 'z-index': 1 });
			
			parent.find('.drop-down').show();
			parent.css({ 'z-index': 2 });
		},
		function(){ 
			var parent = $(this).parent().parent();
			$('.box').css({ 'z-index': 1 });
			parent.find('.drop-down').hide();
		}
	);
	$('.fix-last > *:last-child').addClass('last');
	var href = '';
	$('#floors a').mouseover(function(){
		href = $(this).attr('href');
		$('#floors .image img').fadeOut(200, function(){
			$('#floors .image img').attr('src',href);
		}).fadeIn(200);
	}).click(function(e){e.preventDefault();});
});
