function overElement(id,l,r)
{
	if(l == '1') {
		document.getElementById(id).style.borderLeftColor = "#046ea2";
	}
	
	if(r == '1') {
		document.getElementById(id).style.borderRightColor = "#046ea2";
		
	}
}

function outsideElement(id,l,r)
{
	if(l == '1') {
		document.getElementById(id).style.borderLeftColor = "#dfdfdf";
	}
	
	if(r == '1') {
		document.getElementById(id).style.borderRightColor = "#dfdfdf";
	}
}