$(document).ready(function(){
				$('[customTag]').hide();
				$('.moveNextYear').click(function() {
					$('#myController').scrollTo('+=100px', 800 );
				});
				$('.movePreviousYear').click(function() {
					$('#myController').scrollTo('-=100px', 800 );
				});
				
				$('.newMoreInfo').click(function()
				{
					
					$('.divCloseClass').click();
					
					var associatedDiv=$(this).attr('associatedDiv');
					var tab=$(this).attr('yearTag');
					var uniqueID=$(this).attr('uniqueID');
					$('#span'+tab).click();
					
					$('#showTable'+tab+uniqueID).hide();
					$('#hiddenTable'+tab+uniqueID).fadeIn();
					$('#associateddiv'+associatedDiv+uniqueID).fadeIn();
				
				});
				$('.divCloseClass').click(function()
				{
					var associatedDiv=$(this).attr('associatedDiv');
					var tab=$(this).attr('yearTag');
					var uniqueID=$(this).attr('uniqueID');
					$('#hiddenTable'+tab+uniqueID).hide();
					$('#'+associatedDiv+uniqueID).hide();
					$('#showTable'+tab+uniqueID).fadeIn();
					

				});

});
