jQuery(document).ready(function(){
	//alert("all js loaded!");
	
	jQuery('#contentList').accordion({
		header: "h3.accordionheader",
		active: 0, /* 0 */
		alwaysOpen: false,
		/*fillSpace: false*/
		autoheight: false
		
	});
	var lable=jQuery('#m1 li a.active').html();
	if(lable!=""){
	jQuery("#SubnavText").html(lable);
	}
});