function call(divid,hide1,hide2,libar,imagetext)
{

$('#'+hide1).hide();//alert('#'+hide1+'is hidden');
$('#'+hide2).hide();//alert('#'+hide2+'is hidden');

// Naivgation class change
reset_active();	
$("#"+libar).addClass("active_book");
$('#caption_text').html(imagetext);



$('#'+divid).fadeIn('100', function() {
        // Animation complete
      });

}
function reset_active()
{
$('.holder li').each(function(index) {
if ($(this).hasClass("active_book")) {

		$(this).removeClass('active_book');
		}
  });

	
}
