/*
function randOrd() {
    return (Math.round(Math.random())-0.5); 
}
*/

$(document).ready(function() {
/*
    var klasses = [ 'borderThick', 'borderDotted', 'borderSolid', 'borderDashed' ];
    klasses.sort( randOrd );
    $('.preview').each(function(i, val) {
        $(this).addClass(klasses[i]);
    });
*/
    
    var timelinecount = $('.previewWrap').size();
    var timelineeachwidth = $('.previewWrap').outerWidth(true);

    $('.page-template-template-timeline-php').css('width', (timelinecount*timelineeachwidth)+200);
    
    var videoBackground = $("video#background")
    
    videoBackground.bind('ended', function(){ this.play(); });

    videoBackground.show();
    

});
