$(function(){
	
	$(".section").corner("6px");
	//$(".basket-section").corner("round 6px").parent().css('padding', '4px').corner("round 8px")
	if(jQuery.support.noCloneEvent) {
		$("#basket-wrap").corner("round 8px");
	}
	$(".basket-section").corner("round 6px").css('margin-bottom','4px');
	$("#basket h2").corner("round 6px");
	$(".white-out").corner("round 6px");
	$("#options h1").corner("round 6px");
	
	var $scrollingDiv = $("#basket");
	$(window).scroll(function(){			
		if( $(window).scrollTop() > 386 ) {
			$scrollingDiv
				.stop()
				.animate({"marginTop": ($(window).scrollTop() - 386 ) + "px"}, "slow" );			
		} else if( $(window).scrollTop() == 0 ) {
			$scrollingDiv
				.stop()
				.animate({"marginTop": ($(window).scrollTop() ) + "px"}, "slow" );
		}
	});
		
});
