$(document).ready(function(){ 	
//Hide everything with a class of "hide"
	$('.hide').hide();
//Toolbar
	$('#tool_choice').localScroll({
	   target:'#toolbox',
	   hash: false,
	   duration: 700
	});
//Homepage access boxes
	$('#course_page').show();
	$('#one').click(function (){
		$('.hide').hide();
		$('#course_page').fadeIn('slow');
		return false;
	});
	$('#two').click(function (){
		$('.hide').hide();
		$('#catalog').fadeIn('slow');
		return false;
	});
	$('#three').click(function (){
		$('.hide').hide();
		$('#ejournals').fadeIn('slow');
		return false;
	});
	$('#four').click(function (){
		$('.hide').hide();
		$('#specific_database').fadeIn('slow');
		return false;
	});
	$('#five').click(function (){
		$('.hide').hide();
		$('#im').fadeIn('slow');
		return false;
	});
//Homepage techbar hover effects
    $('#techbar a').hover(function () {
    	$(this).stop().animate({paddingTop: '5px'}, 300);  
    	}, function() { 
        $(this).stop().animate({paddingTop: '10px'}, 200);
    });
});