// jQuery
$(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;
 });
  

// Masthead Cycle 
	$('.s1')
		.cycle({
		fx:			'scrollHorz',
		speed:		900,
		timeout:	10000
	});
	
	
// Stripes - Add even class to even items in a loop
	$(".stripes").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
	$(".stripes:even").addClass("alt");
	


});


