jQuery.noConflict();     
jQuery(document).ready(function($){



// staff slider

if ( $('#adminbar #toolbar').length > 0 ) {
	
	$('.expand').css({margin: "5em 0", background: "#f3f3f3"}).prepend('<h2>Expander Area</h2> <p>The dark background will not show to end users, this is only here to help you see the difference in this region versus the normal regions. Make Sure you check the "Display this title" checkbox for each text area, otherwise there will be no way for the user to reveal the content.</p>');

} else {

	$('.expand .element').hide();
	
	$('.expand .title').css({
		padding: '6px 10px 6px 20px',
		background: 'transparent url(http://crowedunlevy2009.publishpath.com/Websites/crowedunlevy2009/templates/cd/images/bg_expanded.gif) no-repeat scroll 0 9px'
		});
	
	$('.expand .container').css('cursor','pointer').click(function (){
		$('.title', this).toggleClass("active");
		$(this).next('.element').toggle('slow');
	});

}

});//end doc ready
