function attachStyle (src) {			
	var linker = new Element ('link');
	linker.setProperties({
		rel: 'stylesheet',
		type: 'text/css',
		media: 'all',
		href: src
	});
	linker.injectBefore($(document.head).getElement('script'));
}
