I want to add delay to the mouse out function about 1000ms thanks
$('#cart .arrow').live('mouseover', function () {
$('#cart').addClass('active');
$('#cart').load('index.php?route=module/cart #cart > *');
$('#cart > .content').slideToggle('fast');
$('#cart').live('mouseleave', function () {
$(this).removeClass('active');
}
});