var l = new Link();
function Link(){	
	this.rollOver = function(_element){
		document.getElementById(_element).style.backgroundColor = "#ebf5ae";
	}
	
	this.rollOut = function(_element){
		document.getElementById(_element).style.backgroundColor = "#f5fcc9";
	}
}
