function BlurLinks(){
  var a = document.getElementsByTagName('a');
  var x = a.length;

  for(i=0;i<x;i++){
    a[i].onfocus = new Function("this.blur();");
  }
}


function Init() {
    BlurLinks();
    var inputs = document.getElementsByTagName("input");
    for (var i = 0; i < inputs.length; i++) {
        if (inputs[i].type == "button" || inputs[i].type == "submit") {
            inputs[i].onfocus = new Function("this.blur();");
            inputs[i].onmouseover = function() {
        	this.style.color = "#5c5c4e";
        	this.style.borderColor = "#C8CAC2";
            }
            inputs[i].onmouseout = function() {
            	this.style.color = "#FFFFFF";
            	this.style.borderColor = "#C8CAC2";
            }
            inputs[i].onmousedown = function() {
            	this.style.color = "#5c5c4e";
            	this.style.borderColor = "#C8CAC2";
            }
            inputs[i].onmouseup = function() {
            	this.style.color = "#FFFFFF";
            	this.style.borderColor = "#C8CAC2";
            }
        }

        if(inputs[i].type == "image"){
        inputs[i].onfocus = new Function("this.blur();");
        }
    }
}



