/*
To use the function add showPageHelp(img,divID,durn); to the onclick event of the element (image, a etc). 
If it is an <a> tag you also need to add return false; 
i.e. <a href=”” onclick=” showPageHelp(this,divID,durn); return false;” >

The only argument for the function that is compulsory is this i.e. showPageHelp(this); would work with the default values.
divID = is the ID of the center div element. The default is ‘CMSPage_help’
durn = is the duration in seconds required for the animation . Default is 1.0 

The Help text in the interface should be nested as follows

		<div style="height:40px">	
			<div id="CMSPage_help" style="display:none">
				<div>Help text goes here</div>
			</div>
		</div>
The Outer DIV can have any style you want.
The Middle DIV should have the id that would be used by the function
The innermost DIV should contain the help information
*/

	function showPageHelp(img,divID,durn){
		divID    = !divID  ? 'CMSPage_help' : divID;
		durn     = !durn   ? 0.5 : durn ;		
		var obj = $(divID);
		if(obj){
			if(obj.visible()){
				Effect.SlideUp(divID, { duration: durn });
			}else{
				Effect.SlideDown(divID, { duration: durn });
			}
		}

	}
