$(document).ready(function(){
    videos = new Array(
        '<li class="v0"><iframe src="http://player.vimeo.com/video/33893748?title=0&amp;byline=0&amp;portrait=0" width="498" height="311" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><div class="name">- <strong><a href="http://vimeo.com/33893748">Happy Holidays and Happy New Years 2012</a></strong>, <em>from <a href="http://vimeo.com/user6188262">Chris Reisbeck</a> on <a href="http://vimeo.com">Vimeo</a>.</em></div></li>'
        );

     jQuery('ul.video').html(videos[0]);
});

// example of youtube video '<li class="v1"><iframe width="498" height="311" src="http://www.youtube.com/embed/H0zKXAXDAyA" frameborder="0" allowfullscreen></iframe><div class="name">- <strong></strong>, <em></em></div></li>'


function nvideo(){
    cl=jQuery('ul.video li').attr('class');
    a=cl.charAt(1);
    if(a==(videos.length-1)){a=0;}
    else{a++;}
    jQuery('ul.video li').slideUp(2000,function () {jQuery('ul.video').html(videos[a]);});
}

function pvideo(){
    cl=jQuery('ul.video li').attr('class');
    a=cl.charAt(1);
    if(a==0){a=(videos.length-1);}
    else{a--;}
    jQuery('ul.video li').slideUp(2000,function () {jQuery('ul.video').html(videos[a]);});
}
