$(document).ready(function(){
	$('div.addtop').hide();
	$('div.filledin').show();

	$('input#addbook2').click(function() {
		$('div.addtop:hidden:first').show();
		if ($('div.addtop:hidden').size() == 0) {
			alert('Only a maximum of 5 books can be ordered at a time!');
		}
		return false;
	});

	$('input.delbutton').click(function() {
		$(this).parent().hide();
		$(this).parent().children().children().filter('input').attr('value', '');
		return false;
	});
});

