var $slider = jQuery.noConflict();
var intCurrent = -1;
var bShow = false;
function showhide(intShow)
{
	bShow = false; //reset the show/hide variable.
	var obj = '.p'+intShow;	
	//if it's already hidden, then show it.  Otherwise don't show it again.
	if($slider('#slidecontainer ' + obj).is(':hidden')) 
		bShow = true;		
	//close all of the p tags in the slidecontainer.
	$slider('#slidecontainer p').slideUp("slow");
	//open the one selected only if it was hidden.  Otherwise they meant to close it.
	if(bShow) 
		$slider('#slidecontainer ' + obj).slideDown("slow");

}

