

/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

var ThickBox = {
    init: function() {
        $('a.colorbox').colorbox({iframe: true, innerWidth:425, innerHeight:344});
        $('select.posSelect').each(function () {
            $(this).change(function(){
                var id = $(this).attr('rel');
                var newpos = $(this).attr('value');
                window.location.href = '../video-move/' + id + '/' + newpos + '/';
            });
        });
    }
};

$(document).ready(ThickBox.init);
