Cufon.replace('.cufon', {
    textShadow: '#bfb9b6 3px 3px'
});

$(document).ready(function() {
    if ($('.cake').length) {
        $('.cake').colorbox({
            inline:true,
            href: ".colorboxcontent",
            onLoad: function() {
               var imageurl = $(this).attr('href');
               $('#cakecontent').html($(this).next().html());
               $('#cakeimage').html('<img src="' + imageurl + '">');
            }
        })
    }

});
