// JavaScript Document

/* Swap Images */
/*
function toggleMGButton(imageid) {
	
	var myImage	= document.getElementById(imageid).src;
	
	if(myImage == 'http://www.hamptonpark.org/images/MinistryGuide_Off.png') {
		document.getElementById(imageid).src = 'http://www.hamptonpark.org/images/MinistryGuide_On.png';
	}
	else {
		document.getElementById(imageid).src = 'http://www.hamptonpark.org/images/MinistryGuide_Off.png';
	}
}
*/

// Slide Div
jQuery(document).ready(function() {
 // toggles the slickbox on clicking the noted link
	//$('a#mg-toggle').click(function() {
	//$('#MG_ContentLY').toggle(400);
	//return false;
	//});
});
