// jQuery
// when the DOM is ready...
$(document).ready(function() {
									
 // hides the quickbox
 // (a little sooner than page load)
  $('#quickbox').hide();
 // shows the quickbox on clicking the noted link
 $('#quick-show').click(function() {
 $('#quickbox').show('slow');
 return false;
  });
 // hides the quickbox on clicking the noted link
  $('#quick-hide').click(function() {
 $('#quickbox').hide('fast');
 return false;
  });
 // slide toggles the quickbox on hover the noted link
  $('#quick-toggle').hover(function() {
 $('#quickbox').slideToggle(200);
 return false;
 });
  


	// slider effect
	// http://jqueryfordesigners.com/coda-slider-effect/
	// 1. create scroll effect
	// 2. handle the selection on the navigation
	// 3. add prev + next buttons
	// 4. support vertical and horizontal

//	var $panels = $('#slider .panel');
	//var $container = $('#slider .scrollContainer');
	
	// remove scrollbars
	//var $scroll = $('#slider .scroll').css('overflow', 'hidden'); 

});

