jQuery(function($){
	$('.az_slide_product').css({'opacity' : '0.9', 'filter' : 'alpha(opacity=90)'});

	var config = {
		 sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)
		 interval: 50, // number = milliseconds for onMouseOver polling interval
		 over: function(e){
			$(this).animate({'top':'42px'});
		}, // function = onMouseOver callback (REQUIRED)
		 timeout: 200, // number = milliseconds delay before onMouseOut
		 out: function(e){
			$(this).animate({'top':'330px'});
		} // function = onMouseOut callback (REQUIRED)
	};

	$(".az_slideup_01 li div.az_slide_product").hoverIntent( config );
});
