/*********************************************************************
2007-12-28 Load CSS Dynamically
by camartin

Tested with:
PC
IE6, IE7, Firefox 2.0, Opera 9.0

Mac
Safari 2.0, Firefox 2.0, Opera 9.0
*********************************************************************/

function update_css(id, file)
{

  css_path = 'http://a.disney.go.com/pirates/online/v3/global/css/';

  document.getElementById(id).href=''; //this is an IE6 work-around, otherwise, IE6 will crash
  document.getElementById(id).href= css_path + file;
}

