function el(id){return document.getElementById(id);}
function url(url){window.location = url;}
function nurl(url){window.open(url);}

function changeImage(path)
{
	$('#headimage').attr('src',path)
}

$(function(){
    $('img').bind("contextmenu", function(e) {
        e.preventDefault();
    });
}); 
