
		var $j = jQuery.noConflict();
		$j(function() {
			$j('#basket a.handle').toggle(
				function(){
					$j("#expand").animate({marginTop:-98}, {duration:250});
					$j(this).blur();
					return false;
				},
				function(){
					$j("#expand").animate({marginTop:-500}, {duration:250});
					$j(this).blur();
					return false;
				}
			)
			$j("a.handle").click(function () {
      			$j("div#expand").toggleClass("clicked");
			});
			$j("a.handle").hover(function () {
      			$j("div#expand").toggleClass("highlight");
			});


		});
