window.addEvent('domready', function(){
    
    if ($('prodimg')) {
        
        new Cycle('prodimg', {
            interval: 0,
            active: '#prodimgthumb li',
            toggler: '#prodimgthumb li a'
        }).start();
        
    }
    
    new DatePicker('.pickdate', {
        allowEmpty: true,
        format: 'd F Y',
        inputOutputFormat: 'd F Y H:i',
        positionOffset: {x:1, y:0}
    });
    
});

