$(document).ready(function() {
	

//			Cufon.replace('ul#topnav a, #brandbox a',{hover: true});
//			Cufon.replace('h1,span,.oe_heading');


var links = document.getElementById('home').getElementsByTagName('a');
    for ( var i = 0; i < links.length; i++ ) {
        links[i].onmousedown = function () {
            this.blur();
            return false;
        }
        links[i].onclick = function() {
            this.blur();
        }
        if ( /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent) ) {
            links[i].onfocus = function() {
                this.blur();
            }
        }
    }

});
			
