function jumpScroll() {
   	window.scrollBy(0,550); // horizontal and vertical scroll targets
}
function  jumpDelay() {
	setTimeout("jumpScroll()", 600);
}


//This controls the site menu expand and collapse
$(document).ready(function() { 
	// Hide the "view" div. 
	$('div.orderwrapper').hide(); 
	// Watch for clicks on the "slide" link. 
	$('div.orderbutton').click(function() {
		// When clicked, toggle the css class to swap arrows.
		$('div.orderbutton').toggleClass('orderbg').toggleClass('orderbgOver');
		jumpDelay();
		// When clicked, toggle the "view" div. 
		$('div.orderwrapper').slideToggle(600); return false; }); });

