
$(document).ready(function(){
						   
 //$("#block_content").attr('style','padding: 0px; height: 16px; display: block; overflow: hidden;');
 $("#cart_block_contenu").attr('style','padding: 0px; height: 20px; display: block; overflow: hidden;')
  		
    //When Mouse rolls over li
    $("#cart_block").mouseover(function(){
		var h = parseInt($('#cart_block_list').height())+10 +'px';
		//alert (h);
        $("#cart_block_contenu").stop().animate({height:h},{queue:false, duration:500, easing: 'easeOutBounce'})
    });

    //When Mouse cursor removed from li
    $("#cart_block").mouseout(function(){
        $("#cart_block_contenu").stop().animate({height:'20px'},{queue:false, duration:500, easing: 'easeOutBounce'})
    });

});
