
$(document).ready(function(){

$(".home_page, .creations").css("borderBottomRightRadius", "5px");

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

$("div.creations h1").css("borderBottomRightRadius", "3px");

$("div.center_img img").mousedown(function(e){
return false;
});

$("div.center_img img").bind("contextmenu", function(e){
return false;
});

$("div.center_img img").load(function(){
$(this).fadeTo(1, 0.75).fadeTo(1000, 1.0);

});

});



