/*
 * $Id: jquery_seller_cart.js,v 1.1 2009/11/20 17:38:14 JimSmith Exp $
 * 
 * Author:          Jim Smith <jim@cash4books.net>
 * Description:     The starting point of execution for all jquery scripts that 
                    run under /seller_cart.php.
 * 
 */
$(document).ready(function() {
	$('#enter_more_isbns_hidden').hide();
	
	$('#show_price_more_books_link').click(function() {
		$('#enter_more_isbns_hidden').slideToggle("normal", function() {
			$('#price_my_books_textarea').focus();
		});
		$('#show_price_more_books_p').hide();
		return false;
	});
	
});