
$(document).ready(function(){
						   
// book rollover
$(function () {
 

$("#cover").hover(
 function()
 {
  this.src = this.src.replace("_reg","_over");
 },
 function()
 {
  this.src = this.src.replace("_over","_reg");
 });

			});
						   });

