// Dynamic Layout CSS Styles
// 
// 
// 
// 
// 
// 
// 

	var dl_thresholds={wide:900,ultrawide:1280};
	
	function dl_onResize(){
	  var t, tw=0, w = $("#page").width();
	  //var t, tw=0;
	  for(var c in dl_thresholds){
		$("#page").removeClass(c);
		if(dl_thresholds[c]>tw&&dl_thresholds[c]<w){ tw=dl_thresholds[c]; t=c; }
	  }
	  if(t!=undefined){ $("#page").addClass(t); }
	}
	
	if(dl_thresholds!=undefined){
	   $(window).bind("load",dl_onResize);
	   $.elementReady("page",dl_onResize);
	}
	
