
/*
 * @author Fritjof
 */

$(document).ready(function() {
	
	
	$(".com-basket-submit").hide();
	
	var buttons = $(".com-item-refresh");
	buttons.mouseover(function() {
		
		$(this).after('<div class="basket-hilite">Warenkorb aktualisieren</div>').animate({opacity: 1.0}, 3000,function(){ 
			$(".basket-hilite").fadeOut("slow", function()
					{
						$(this).remove();
					});
	    }); 
	});
	
	buttons.mouseout(function() {
		$(".basket-hilite").fadeOut("slow", function()
				{
					$(this).remove();
				}
		);
	});
	
	buttons.mouseleave(function() {
		$(".basket-hilite").fadeOut("slow", function()
				{
					$(this).remove();
				}
		);
	});
	
	
	$(".basket-hilite").mouseover(function()
	{
		$(".basket-hilite").fadeOut("slow", function()
				{
					$(this).remove();
				}
		);
	});
	
	$(".basket-hilite").mouseenter(function()
	{
		$(".basket-hilite").fadeOut("slow", function()
				{
					$(this).remove();
				}
		);
	});
	
	$(".basket-hilite").mouseenter(function()
	{
		$(".basket-hilite").fadeOut("slow", function()
				{
					$(this).remove();
				}
		);
	});

	$(".basket-hilite").mouseleave(function()
	{
		$(".basket-hilite").fadeOut("slow", function()
				{
					$(this).remove();
				}
		);
	});
	
	

});
