

$(document).ready(function() {

 
    if(document.getElementById('slider')) {

        $('#slider').cycle({
            height: 371,
            width: 938,
            fx: 'fade',
            speed:       500,  // speed of the transition (any valid fx speed value)

            timeout: 10000,
            pager:  '#slider_nav',
            pagerAnchorBuilder: function(idx, slide) {
                // return selector string for existing anchor
                return '#slider_nav li:eq(' + idx + ') a';
            }
        });

    }

    if ($("a[rel='color_box']").length > 0) {
        $("a[rel='color_box']").colorbox({
            opacity: .5
        });
    }


    // add product variant to title attribute before paypal submit
    $('form.buy_now').submit( function() {

        var variant = $(this).find('select').find('option:selected').attr('title');

        $(this).find('input[name=item_name]').attr('value', 'Di Ard - '+variant);

        return true;
    });


});
