$(document).ready(function() {
	getPicturesList();
	
    /* $("#datepicker").datepicker(); */
	
	$("#datepicker").datepicker({
		onSelect: function(dateText, inst) { 
			dateText = dateText.replace(/\//g, "");
			window.location = "http://www.stcp.ac.in/event/events/date/" + dateText;
		}
	});

	$("div.section img").parent('h3').siblings("div").hide();
	
	$("div.section img").click(function () {
		var imgSrc = $(this).attr('src');		
		if(imgSrc.substring(imgSrc.lastIndexOf('/') + 1) == 'close.gif') {
			$(this).attr('src', 'http://www.stcp.ac.in/images/open.gif');
		} else
		{
			$(this).attr('src', 'http://www.stcp.ac.in/images/close.gif');
		}
		
		$(this).parent('h3').siblings("div").toggle("slow");
	});
		 
});



