$(document).ready(function(){
	$("#browser").treeview({
		persist: "cookie",
		collapsed: true,
		unique: true,
		animated: "fast"
	})
	
	makeSize();
	$(window).resize(function(){ makeSize(); })
	
})

function makeSize()
{
  var width = ( $(window).width() - $( 'div#cmsMenu' ).width() - 30 );
  $( 'div#cmsBody' ).width( width );
}
