	$(document).ready(function (){
		
/*		var strCheckBox = '<input type="checkbox" checked style="float:left; margin:4px"/>';

		$('.pnl .cat').each(function(){												
			
			//add checkbox to each li in the accordion
			$(this).parent().before(strCheckBox);
			
			
			// if the checkbox is selected set the parent li class to also selected
			if ($(this).parent().prev().attr("checked","checked")){
				$(this).parent().addClass('li-subnav-selected')	;
			};
			
			console.log($(this).parent().parent().html());			
		});


		$('.pnl input').click(function(){
		
		$(this).child().removeClass('li-subnav-selected');
		
		});*/

	  //$('.browsenav').pngFix();		
		$('.browsenav').accordion({
					 clearStyle: true,
					 //navigation: true,
					 header: "h3",			
					 selectedClass: "selected",
					 autoHeight: false,
					 alwaysOpen: false
		});
});