﻿simpleCart.currency = EUR;
simpleCart.taxRate = 0.2;

simpleCart.cartHeaders = ["Thumb_image_noHeader", "Name_noHeader", "Quantity_noHeader", "increment_noHeader", "decrement_noHeader", "Remove_noHeader", "Price_noHeader", "Total_noHeader"];

simpleCart.checkoutTo = Custom;
simpleCart.email = "onlinebestellung@musikverein-kaernten.at";


function simpleCart_contact(){
    document.getElementById("Cartitems").style.display = "none";
    document.getElementById("EmailForm").style.display = "block";
    document.getElementById("bu_cart").className = "simpleCart_cart2";
    document.getElementById("bu_contact").className = "simpleCart_contact2";
    document.getElementById("bu_contact2").style.display = "none";
    
}

function simpleCart_cart(){
    document.getElementById("Cartitems").style.display = "block";
    document.getElementById("EmailForm").style.display = "none";
    document.getElementById("bu_contact2").style.display = "block";
    document.getElementById("bu_cart").className = "simpleCart_cart";
    document.getElementById("bu_contact").className = "simpleCart_contact";
}



$(document).ready(function(){     
        
      //$('a#addCart').attr("onclick","simpleCart.add(\'name=None\',\'price=0\',\'quantity=1\' );");

      $('a#addCart').click(function(){
            var valPrice = $("#money").val();
            var valHead = $("#addHeadline").text();
            var valDate = $("p#cartDate").text();              
            simpleCart.add('name=' + valHead + ' - ' + valDate ,'price=' + valPrice,'quantity=1');
     
	        var targetOffset = $("#Warenkorb").offset().top;
            $('html,body').animate({scrollTop: targetOffset}, 1000);
                
            
      });        
});


