var jibe = jibe || {};

jibe.redirect = function(){
    // redirect to product variation
    
    var key = satchmo.make_optionkey(),
        detail = satchmo.variations[key];
    if (detail) {
        satchmo.set_name(detail['SLUG']);
    }
    
    var product_url = '/shop/product/' + detail['SLUG'] + '/';
    location.href = product_url;  
    
    
    
};
