$(document).ready(function() { 
		// Link click on product box
		$(".Produktbox").click(function(){
			document.location.href = $(this).find("a:first").attr("href");
		});
		
		// Add class .submit_button to all submit buttons
		$("input[type=submit]").addClass("submit_button");
		
		// Hover for icon: delete shopping cart item
		$(".RemoveShoppingCartItem").hover(function() {
			$(this).attr("src", "/App_Themes/FINB/images/icon_delete_hover.gif");
		}, function() {
			$(this).attr("src", "/App_Themes/FINB/images/icon_delete.gif");
		});
		
		$(".ToolsNavigationBox #menuElem a").html("");
        var box = null;
        var title = null;
        $(".Produktbox").hover( function() {
             box = $(".ProductPriceBox", this);
             box.parent().addClass("whiteborder");
             title = $(".ProductTitle", this);
             title.addClass("greenbg");
             box.show();

        }, function() { 
              box = $(".ProductPriceBox", this);
              box.parent().removeClass("whiteborder");
              title = $(".ProductTitle", this);
              title.removeClass("greenbg");
              box.hide();
        });

        $(".box_warenkorb").hover( function() {
             box_waren = $(this);
			box_waren.attr("class","box_warenkorb_hover");

        }, function() { 
             box_waren = $(this);
			 box_waren.attr("class","box_warenkorb");
        });

        $(".box_easyorder").hover( function() {
             box_waren = $(this);
			 box_waren.attr("class","box_easyorder_hover");

        }, function() { 
             box_waren = $(this);
			 box_waren.attr("class","box_easyorder");
        });

	$(".AddToCartImageButton").hover( function() {
		$(this).attr("src","/App_Themes/Images/ShoppingCart/BGTasche_TransH.png");
	}, function() {
		$(this).attr("src","/App_Themes/Images/ShoppingCart/BGTasche_Trans.png");
	});

	
});
