$(window).load( function() { 

	$( '#dropStoreMore' ).mouseover( function() { this.src = '/i/morestores_over.jpg'; } ); 
	$( '#dropStoreMore' ).mouseout( function() { this.src = '/i/morestores.jpg'; } ); 
	$( '#dropContribLearn' ).mouseover( function() { this.src = '/i/learnmore_over.jpg'; } );
	$( '#dropContribLearn' ).mouseout( function() { this.src = '/i/learnmore.jpg'; }); 
	var viewCart = $( '#headerViewCart' ); 
	if (viewCart != null)
	{
		viewCart.mouseover( function() { this.src = '/i/header_viewcart_over.jpg'; } );
		viewCart.mouseout( function() { this.src = '/i/header_viewcart.jpg'; } ); 
		var headerCheckout = $( '#headerCheckout' ); 
		headerCheckout.mouseover( function() { this.src = '/i/header_checkout_over.jpg'; }); 
		headerCheckout.mouseout( function() { this.src = '/i/header_checkout.jpg'; }); 
	}
	update();
}); 

var scrolling = false; 
function update()
{
	var offset = $(document).scrollTop(); 
	$( '#leftInner' ).animate( { top : offset + 'px' }, 400  ); 
	$( '#rightInner' ).animate( { top : offset + 'px', left : '0px' }, 400  ); 
    setTimeout("update()", 500); 
}

