jQuery(document).ready(function(){
	// hides quickLinks just before page load
	
	jQuery('#UGAquickLinks').hide();
	
	// toggles the slickbox on clicking the noted link
	jQuery('.toggleQuickLinks a').click(function() {
		jQuery('#UGAquickLinks').slideToggle(400);
		return false;
	});
});
