
$(document).ready(function(){

var n = new Date();
var y = n.getFullYear();
$("#year").html(y);

$("img").mousedown(function(){
alert("These images are copyrighted!")
return false;
});

});




