//golden code to fix an issue with liferay, where position:relative CSS on login causes 
//floating objects to be displaced
if ( (typeof(Liferay) != 'undefined') ) {
    if (Liferay.Columns && !Liferay.Columns._ICE_positionSet) {
         Liferay.Util.actsAsAspect(Liferay.Columns);
         Liferay.Columns.after(
             'add',
             function(portlet) {
            // if(portlet.id.indexOf('locations_portlet') < 0)
				jQuery(portlet).css('position', 'static');
                 
     }
     );
    Liferay.Columns._ICE_positionSet = true;
    }
}
