/*-------------------------------------------------------------

  fixes.js
  
  Fixes for browser-based/other issues
  
  ©2008 Pro-Ma Systems. All Rights Reserved.

-------------------------------------------------------------*/


/*-------------------------------------------------------------
  Fix overflow problem when logged in (right-hand area)
-------------------------------------------------------------*/

function fixHomePagePanelWidthsOnLogin() {
	if(document.getElementById("dnn_ctl00_dnnLOGIN_cmdLogin").innerHTML == "Logout") {
		//alert($(".feature").width());
		$(".feature").width( $(".feature").width() - 25 );
	}
}

addEvent(window, 'load', fixHomePagePanelWidthsOnLogin);
