// JavaScript Document
$(document).ready(function (){
	$('#button a').click(function(){
		var integer = $(this).attr('rel');
		var cap= $(this).attr('title');
		$('#spotSlide .spotCover').css({left:-216*(parseInt(integer)-1)}).hide().fadeIn(); /*----- Width of div spotContent (here 216) ------ */
		$('#button a').each(function(){
		$(this).removeClass('active');
			if($(this).hasClass('button'+integer)){
				$(this).addClass('active')}
		});
		$('#titleTxt').html(cap);
	});
	$('#lib_button a').click(function(){
		var integer = $(this).attr('rel');
		var cap= $(this).attr('title');
		$('#libSlide .libCover').css({left:-216*(parseInt(integer)-1)}).hide().fadeIn(); /*----- Width of div libContent (here 216) ------ */
		$('#lib_button a').each(function(){
		$(this).removeClass('active');
			if($(this).hasClass('lib_button'+integer)){
				$(this).addClass('active')}
		});
		//$('libtitleText').text(cap);
		$('#libtitleTxt').html(cap);
	});
	
});
