1) Upload your logo.jpg to the artfull image folder
2) Open style.css and find this line
#header{background:transparent;width:100%;height:145px;margin:0 auto;padding:0;}
change it to this
#header{background:transparent url(images/logo.jpg) 0 0 no-repeat;width:100%;height:145px;margin:0 auto;padding:0;}
you might have to adjust the two digits after the url like so
url(images/logo.jpg) 0 20px
to find the best placement of the image.
3) find this line
#header h1 a{margin:0;padding:0;color:#090909;letter-spacing:-4px;}
and change it to this
#header h1 a{display:block;height:80px;width:500px;text-indent:-90000px;margin:0;padding:0;outline:none;}
where width an height indicates the size of your logo.jpg previously uploaded
4) Find this line
#header h1 a:hover{background:#fff;}
and replace it with this
#header h1 a:hover{background:transparent;}
5) Also replace this lines
#header h1 span{color:#900;letter-spacing:-4px;}
.des{margin:-47px 0 0 0;padding:0 0 0 50px;color:#666;}
.log{color:#666;font:bold 80% century gothic,verdana;height:20px;width:200px;
position:absolute;right:1%;top:155px;}
with this
#header h1 span,.des,.log{display:none;}