/* jQuery hoverImageText plugin usage */

	$(document).ready(function() {
		
		/* options can be found within the plugin js */
		/* to make animation slide down rather than up, remove 'marginTop' references */
		$.fn.HoverImageText.defaults.AnimShow = { marginTop: "23px", height: "show"};
		$.fn.HoverImageText.defaults.AnimHide = { marginTop: "71px", height: "hide"};
		/* activate HoverImageText */
		$('.imageLibrary a').HoverImageText();
		
	});
