function ajaxLoading(){
  try {
	if($('bookHolder')){
	  	$('bookHolder').innerHTML = '<p align="center">Loading Please Wait a Moment...</p>';	
	}  
  }
  catch(e){};
}
function moreLoading(){
  try {
	if($('showMore')){
	  	$('showMore').style.display = 'block';
	  	$('showMore').innerHTML = '<p align="center">Loading Please Wait a Moment...</p>';	
	  	$('showBooks').style.display = 'none';     
	}  
  }
  catch(e){};
}

function selected(Ths){
	//alert($(Ths));
	var h = $A($$('span.imgHolder')).compact();
	h.each(function(e){$(e).setStyle({border:'2px solid #fff'})});
	$(Ths).setStyle({border:'2px solid #f00'});
}

function showBooks() {
	$('showMore').style.display = 'none';
	$('showAuthor').style.display = 'none';
	$('showBooks').style.display = 'block';
   
}
function showAuthoss() {
	$('showAuthor').style.display = 'block';
	$('showBooks').style.display = 'none';
   
}

