$(document).ready(function() {
	
	//Makes the images on right appear
	$('#accordion h3').click(function() {
									  
		var path = "http://www.remedyforbusiness.com/wp-content/themes/remedy/style/images/rhs/";
		var largePath = $('a', this).attr("href");
		var largeAlt = $('a', this).attr("title");
		
		$("#largeImg").attr({ src: path + largePath + ".jpg", alt: largeAlt });
		
		$(this).next().toggle();
		return false;

	})
	
	//One open at a time accordion//
	$("#accordion").accordion( { animated: false, autoHeight: false } );
	

	//Knowledge Bank//
	$("#categories" ).accordion( { 
		autoHeight: false,
		collapsible: false,
		active: false, 
		alwaysOpen: false, 
		animated: false, 
	} );
	//$("#categories ul.group").hide();
	
	
});	

