

//<!-- ------  TIMELAPSE ---------------- -->



// ******** Function for the mouseover-Effect Color-Border at Featured Work Overview ***********

  function over(Id) {

	var part = Id.split("_");
	
	document.getElementById("mov_"+part[1]).style.border = "solid #96B1B8 4px";

	document.getElementById("text_"+part[1]).style.background = "#96B1B8";

	document.getElementById("text_"+part[1]).style.color = "#FFFFFF";

  }

  

  function out(Id) {

	var part = Id.split("_");

	document.getElementById("mov_"+part[1]).style.border = "solid #E0F4FF 4px";

	document.getElementById("text_"+part[1]).style.background = "#E0F4FF";

	document.getElementById("text_"+part[1]).style.color = "#658487";

  }