$ = jQuery;
$(document).ready(function() {
		var $scrollingDiv = $("#Sidebar");
		$(window).scroll(function(){			
			$scrollingDiv
				.stop()
				.animate({"marginTop": ($(window).scrollTop()) + "px"}, "slow" );			
		});
		
		var i = 1;
		$(".wpsc_checkout_forms table tr").each(function(){
			console.log($(this));
			if(i%2==0){
				$(this).css('background-color','#e6f4ea');
			} else {
				$(this).css('background-color','#dceae1');
			}
			i++;
		});
		
});
