/*

*/


function webshop_addProduct(id){
    $('#carttext'+id).fadeTo("slow", 0, function () {
            $(this).text('Hinzugefügt');
            $(this).css('color','green')
    });
    
    $('#carttext'+id).fadeTo("slow", 1);  
    
    $('#carttext'+id).fadeTo("slow", 0, function () {
            $(this).text('In den Einkaufswagen');
            $(this).css('color','black')
    });
      
    $('#carttext'+id).fadeTo("slow", 1);      
}

function toggle_id(id){
    
    if(document.getElementById(id).style.display == '' || document.getElementById(id).style.display == 'none'){
        $('#'+id).slideDown("slow");   
             
    }else{
        $('#'+id).slideUp("slow");        
    }
    return true;
}

function hide_id(id){
    if(!checkbox('billingaddress')){
        document.getElementById(id).style.display = 'none'; 
    }else{
        document.getElementById(id).style.display = 'block';         
    }

}

function checkbox(id){
    if( document.getElementById(id).checked == true){
        return true;
    }
}
