window.addEvent("load", function(){ 
  var styleCSSURI =  'templates/it_healthcare/css/styles/index.html'; 
  $$(".ice-color-switcher li").addEvent( 'click', function(e){
  	e = new Event( e );
  	e.stop();
  	var currentColor = this.className.replace('ice-',"");
  	var href = styleCSSURI+currentColor+".css";
  	var element = new Element('link',{type:"text/css",rel:"stylesheet",href:href} );
  	if( currentColor ){
  		Cookie.set( "it-healthcareTemplateStyle", currentColor );
  	}
  	$E("head").adopt(element);
  	
  } );
  } );

