// JavaScript Document

$(document).ready(function(){	
	
		$(".expandable").click(
		function() { 
	    	$(this).children("h4").toggleClass("onState");
			$(this).children("div.newNameArea").toggle("normal");
  		});
});