$(document).ready(function () {  
	makeExpandable("formDesc");
	makeExpandable("expandableContainer");
	makeExpandable("amenity_expandable");

	/*
	if($(".amenity_expandable").expandable({startopen: true})){
		$("#amenity_title").click(function(){
			makeExpandable("amenity_expandable");
		})
	} else {
		makeExpandable("amenity_expandable");	
	}

	$('#add_amenity_form').submit(function() {
		make_expandable_open("amenity_expandable");
		//alert("testing");
	});
	*/
});

function makeExpandable(divClass){
	$("." + divClass).expandable({
		startopen: false,
		tooltip: "Click to Expand",
		cookie: { expires: 1 },
		cache: false
	});
}

function make_expandable_open(divClass){
	$("." + divClass).expandable({
		startopen: true,
		tooltip: "Click to Expand",
		cookie: { expires: 1 },
		cache: false
	});
}

