/*
 * B2 Collapsible module
 * 
 * 
 * module_collapsible_panels.js
 * 
 * 
 */
jQuery(document).ready(function(){
	jQuery('.coll_showSubs').click(function(){
		// Change minus/plus
		jQuery(this).toggleClass('open');

		// Show/hide siblings on click
		jQuery('~ .coll_subcontent', this).toggleClass('show');

		// Remove dotted lines on links
		jQuery(this).css('outline', 'none');

		// Don't send the visitor to any page
		return false;
	});
});