/*
 * Function: search_slide
 *	Toggles info-centre 
 * Author:
 * 	Michael aka Jabberwock (michael AT evokinteractive DOT com)
 */
function search_slide(strPath) {
  if (document.getElementById("info-centre").style.display == 'none') {
	document.getElementById("info-centre_img").setAttribute('src',strPath + '/images/info-centre-close.jpg');
    	var ef = new Effect.SlideDown("info-centre",{duration: .3});
  }
  else {
    var ef = new Effect.SlideUp("info-centre",{duration: .3});
    document.getElementById("info-centre_img").setAttribute('src',strPath + '/images/info-centre-open.jpg');
  }
}