$(".minibasket").mouseover( function(e) {					
	basketshow();
});	

$(".minibasket").mouseout( function(e) {					
	basketshow();	
});

function basketshow(){
	var me_height = $(".minibasket").css("height");
	//alert(me_height);
	
	if(me_height == "auto"){
		$(".minibasket").css("height", "45px");
		//$(".minibasket").animate( { height:"45px" } , 1000 );
		//alert("test");
		/*
		$(".minibasket").animate({
			  "height": "45px"
			}, "slow");
		*/
	}
	else{
		$(".minibasket").css("height", "auto");		
		
	}
	
}
