$(document).ready(function() {

	$(".droplist").hide();
	$(".toggler").click(function() {
		$(this).siblings(".droplist").toggle("5000");
	});

	$(".time .utc").show();
	$(".time .loc").hide();
	$(".time").mouseover(function() {
		$(this).children(".utc").hide();
		$(this).children(".loc").show();
	});
	$(".time").mouseout(function() {
		$(this).children(".loc").hide();
		$(this).children(".utc").show();
	});

});
