jQuery.noConflict();

var soh = function($) {
	$.fn.toggleDataListInfoDisplay = function(options)
	{
		var defaults =
		{
			hoverClassName: "over",
			offClassName: "off",
			onClassName: "on"
		};
		var settings = $.extend({}, defaults, options);
		
		return this.each(function(){
			$("dd p.hide", this).hide(); // Hide Info
			
			// Add show/hide functionality
			$("dd p.show", this).click(function(){
				$(this).hide();
				$(this).siblings("p.hide").show();
			});
			
			$("dd p.hide", this).click(function(){
				$(this).hide();
				$(this).siblings("p.show").show();
			});
		});
	};
}(jQuery);


/*
 *  methods to run on DOM ready
 */
jQuery(document).ready(function() {
	jQuery("#faqs dl.toggle").toggleDataListInfoDisplay();
});

/*
 *	detach all handlers
 */
jQuery(window).unload(function(){
    jQuery("*").unbind();
});