// jQuery to create Accordian menu
$(document).ready(function(){

	/*********************************************************************
	 Show/hide book detail
	*********************************************************************/

	$('#more-detail').click( function() {
		if ( $('.more').css('display') == 'none' ) {
			$('.more').slideDown();
		}
		else {
			$('.more').slideUp();
		}
	});
});

function tabLoad( url, label ) {
	//Reset all tabs
	$('#tabs a').removeClass('current');

	//Colour tab blue
	$('#tab-' + label).addClass('current');
	
	$.get( url, function(info) {
		//Display content
		$('#tab_content').html( info );
	});
	
	return false;
}
