jQuery(document).ready(function(){

  /*jQuery(".button_verlag").hover( function () {
    jQuery(this).attr("src", "fileadmin/templates/img/button_verlag_active.gif"); 
  }, 
    function () {
      jQuery(this).attr("src", "fileadmin/templates/img/button_verlag.gif");
    }
  );
  
  jQuery(".button_pr").hover( function () {
    jQuery(this).attr("src", "fileadmin/templates/img/button_pr_active.gif"); 
  }, 
    function () {
      jQuery(this).attr("src", "fileadmin/templates/img/button_pr.gif");
    }
  );  */
	/*jQuery("#content input").corner("5px"); 
	jQuery("#content textarea").corner("5px");*/  
	jQuery("h2").corner("5px");
	  
	jQuery(".author_item").hover( function () {
	    jQuery("> .author_item_name", this).fadeIn("fast"); 
	  }, 
	    function () {
		  jQuery("> .author_item_name", this).fadeOut("fast");
	    }
	  );
	jQuery('#wrapper').masonry({ columnWidth: 10, animate: true });
	jQuery("#wrapper img").hover( function () {
		
		if(jQuery(this).attr("id") != "") {
			jQuery(this).attr("src", "uploads/tx_userbooks/" + jQuery(this).attr("id") );
		}
	},
		function() {
		jQuery(this).attr("src", "uploads/tx_userbooks/" + jQuery(this).attr("class") );
	});
});


