/*
	uCONVERT expandable JS
	
	Copyright © 2010 Joseph Earl
*/

jQuery(document).ready(function(){
	// Close expandable content to begin with
	jQuery(".expandable div").hide();
	jQuery(".expandable").removeClass("open");
	jQuery(".expandable h3").toggle(function() {
											jQuery(this).parent().children("div").show('fast');
											jQuery(this).parent().addClass("open");
											},
									function() {
											jQuery(this).parent().children("div").hide('fast');
											jQuery(this).parent().removeClass("open");
											});
});