bueno, y si de pura curiosidad te gustaria saber como hacer el fondo transparente con tus propias manos, lo haces algo asi:
Código:
<html>
<head>
<style>
body{
background-image: url('hoja.jpg');
}
#fondo{
position:absolute;
top:0px;
left:0px;
width:100%;
height:100%;
background-color: #000;
filter:alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}
</style>
</head>
<body>
<div id="fondo">
<h1>Hola mundo!</h1>
</div>
</body>
no es mas que css. ahi nomas te pongo el principio, ya despues uno puede ponerle efectos, y hacer lo que se te ocurra
have funnnnn