jQuery.noConflict();

jQuery(document).ready(function(){ 
	// get all controls
	var temp = jQuery("div.zipControl").parent().get(0);
	jQuery(temp).addClass("zipped");// apply zipped class to parent
	
	temp = jQuery("div.zipControl span");// attach event list to control for open
	jQuery(temp).text( "+ Read More" ); // set here to ensure consistency for the ternary in the onclick
	jQuery(temp).addClass("enabled");
	
	jQuery(temp).bind("click",function(e){
		var temp = jQuery(this).parents().get(1);
		jQuery(temp).toggleClass("zipped");
		jQuery("span.ell").toggle();
		jQuery(this).text( jQuery(this).text() == "+ Read More" ? "- Show Less" : "+ Read More" );
	});
});