// JavaScript Document

$(document).ready(function(){
	$('#clientBooks li span.bookTitle').each(function(){
		$(this).hide();		   
	})
	$('#clientBooks li:even').each(function(){
		$(this).css('clear', 'left');										
	})
	$('#clientBooks li a').mouseover(function(){
		$(this).children('span.bookTitle').show();
	})
	.mouseout(function(){
		$(this).children('span.bookTitle').hide();				   
	})
})