/*var timerId = 0;
$(function(){

    $("ul.dropdown li").hover(function(){

		if ( timerId ) {
			window.clearTimeout(timerId);
			timerId = 0;
		}
		
        $(this).addClass("hover");
		$('ul:first',this).data('hover', true).css('visibility', 'visible').slideDown("fast");
    
    }, function(){
    	var el = this;
		$('ul:first', el).data('hover', false);
		timerId = window.setTimeout(function() {
			if ( !$('ul:first', el).data('hover') ) {
				$(el).removeClass("hover");
				$('ul:first',el).slideUp("fast");
			}
		}, 30);
		
    
    });
    
    $("ul.dropdown li ul li:has(ul)").find("a:first").append(" &raquo; ");

}); */

$(function(){
	$('#cart_block').hover(function() {
									
		$(this).addClass("hover");
		$('#cart_block .block_content ').slideDown("fast");
	}, function() {
		$(this).removeClass("hover");
		$('#cart_block .block_content ').slideUp("fast");
	});
										
});
