$(document).ready(function() { 

	$('#timeDrop.hidden').live('click', function(){
		$(this).addClass('shown').removeClass('hidden');
		$('#timesBlock').animate({'marginTop':'0px'});
		return false;
	});
	$('#timeDrop.shown').live('click', function(){
		$(this).removeClass('shown').addClass('hidden');
		$('#timesBlock').animate({'marginTop':'-200px'});
		return false;
	});	
	
	$('.locs ul li a').live('click',function(){
		var target = $(this).attr('id');
		var fill = $('#filler .'+ target).html();
		$('#swapBox').html(fill);
	});
}); 

