
// ******** Function for the mouseover-Effect at Featured Work Overview ***********
  function over(Id) {
	var part = Id.split("_");
	
	document.getElementById("pic_"+part[1]).style.border = "solid #70B244 4px";
	document.getElementById("text_"+part[1]).style.background = "#70B244";
	document.getElementById("text_"+part[1]).style.color = "#FFFFFF";
	
  }
  
  function out(Id) {
    var part = Id.split("_");
		
	document.getElementById("pic_"+part[1]).style.border = "solid #FFFFFF 4px";
	document.getElementById("text_"+part[1]).style.background = "#FFFFFF";
	document.getElementById("text_"+part[1]).style.color = "#555555";
  }
  