$(document).ready(function() {

$("#firstpane_6 p.menu_head_6").click(function()
{

	$(this).next("div.menu_body_6").slideToggle(300).siblings("div.menu_body_6").slideUp("slow");
});

setInterval(function() {
	    $('#content').load(location.href+' #content>*','');
	}, 5000);

$(function () {
	var electionDay = new Date();
	electionDay = new Date(electionDay.getFullYear() + 0, 11 - 1, 06);
	$('#defaultCountdown').countdown({until: electionDay});
	$('#showAll').countdown({until: electionDay, format: 'YOWDHMS'});
	$('#year').text(electionDay.getFullYear());
});



});

