function copystyle(source,dest){
	var style,camel,prop,val,camelize;
	if(window.getComputedStyle){
		camelize = function(a,b){ return b.toUpperCase(); };
		style = window.getComputedStyle(source, null);
		for(i = 0, l = style.length; i < l; i++){
			prop = style[i];
			camel = prop.replace(/\-([a-z])/g, camelize);
			val = style.getPropertyValue(prop);
			dest.style[camel] = val;
		};
		return this.css(dest);
	};
	if(style = source.currentStyle){
		for(prop in style){
			dest.style[prop] = style[prop];
		};
		return this.css(dest);
   };
   if(style = source.style){
	  for(prop in style){
		if(typeof style[prop] != 'function'){
		  dest.style[prop] = style[prop];
		};
	  };
	};
	return ;
};