// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

// google_preview_image will register a titles ISBN here, ready for data to be loaded from google
// from load_google_books_info.
var isbns = new Array;

function ProcessGBSBookInfo(booksInfo) {
	for (isbn in booksInfo) {
    var bookInfo = booksInfo[isbn];
    if (bookInfo) {
     if (bookInfo.preview == "full" ||
         bookInfo.preview == "partial") {
       $('gp_'+isbn).style.display = '';
     }
    }
  }
}