var tablinks = null;
var tabbodies = null;
var tabcover = null;

function boxReadingRoomInit() {
	tablinks = $('.readingroomBox .tabbar a');
	tabbodies = $('.readingroomBox .tabbody');
	tabcover = $('.readingroomBox .tabcover');
	tablinks.click(function(event) {
		event.preventDefault();
		this.blur();
		boxReadingRoomSelect(this.id);
	});
	boxReadingRoomSelect('tabarea1');
	artofmonth = $('.readingroomBox .artOfMonth');
}

function boxReadingRoomSelect(tab) {
	var tabselected = tablinks.removeClass('selected').filter('#' + tab).addClass('selected');
	tabbodies.removeClass('selected').filter('.' + tab).addClass('selected');
	tabcover.width(tabselected.width()).css('left', tabselected[0].offsetLeft).show();
}
