// Copy Text change
var copy = document.getElementById('copylink');

function copyOver() { copy.innerHTML = '2011 ontwerp door Voormedia'; }
function copyOut() { copy.innerHTML = '&copy;'; }
function copyClick() { return false; }

function addListener(element, type, expression, bubbling) {
	bubbling = bubbling || false;
	if (window.addEventListener) { // Standard
		element.addEventListener(type, expression, bubbling);
		return true;
	} else if (window.attachEvent) { // IE
		element.attachEvent('on' + type, expression);
		return true;
	} else {
		return false;
	}
}

// Start Listeners
addListener(copy, 'mouseover', copyOver);
addListener(copy, 'mouseout', copyOut);
addListener(copy, 'click', copyClick);
