$(document).ready(function() {
	$('a.lightbox').lightBox({fixedNavigation:true});
});

function showHideResults() {
	if( $('#vote_form').is(':visible') ) {
		$("#vote_form").slideUp("slow");
		$("#vote_results").slideDown("slow");
	}
	else {
		$("#vote_results").slideUp("slow");
		$("#vote_form").slideDown("slow");
	}
}

function closeBulletinMsg() {
	$("#bulletin_msg").fadeOut();
}
function closePollMsg() {
	$("#vote_msg").slideUp();
	$("#vote_box").slideDown();
}