// Info loading for the "Faiths" Page
function loadInfo(id) {
  if ($('#'+id+'-info').is(":hidden")) {
$('#christianity-info').slideUp(1500);
$('#hinduism-info').slideUp(1500);
$('#islam-info').slideUp(1500);
$('#judaism-info').slideUp(1500);
$('#'+id+'-info').slideDown(2000);
}			
else 
{
		$('#'+id+'-info').slideUp(1500);
}
};

// events info loading for the "activites" page
function loadEvent(eid) {

$(".E"+eid).fadeIn("slow");

};

// hiding event info for the "activites" page
function hideEvent(eid) {

$(".E"+eid).fadeOut("slow");
};

// function to initialize the datepicker in the "activites" page
$(function() {
		$("#date-start").datepicker();
		$("#date-end").datepicker();
});

// show article's short description the "links" page
function showdesc(aid) {

$(".article"+aid).fadeIn("slow");

};

// hide article's short description the "links" page

function closeArticle(aid) {

$(".article"+aid).fadeOut("slow");
};
