$(document).ready(function() {


	 // setting the tabs in the sidebar hide and show, setting the current tab
	 $('#infobanner .content').hide();
	 $('#infobanner .t1').show();
	 $('#servicelinks-outer .t1').addClass('tab-current');

	// SIDEBAR TABS

	 $('#servicelinks-outer li').hover(function(){
		 $(this).css({cursor: 'pointer'});
	 });

	$('#servicelinks-outer li').click(function(){
			var thisClass = this.className.slice(0,2);
			$('#infobanner .content').hide();
			$('div.' + thisClass).fadeIn();
			$('#servicelinks-outer li').removeClass('tab-current'); //REMOVES CURRENT TAB STATSUS FROM PREVIOUSLY CURRENT TAB
			$(this).addClass('tab-current'); //Makes Current Tab the CURRENT TAB
	});

	$('.t1').css("display", "block"); 


});
