$(document).ready(function(){

    $('.fancybox').fancybox({
        titlePosition: 'inside'
    });
    
    $('.img_link').hover(function(){
        $(this).closest('.item').toggleClass('selected');
    });
    
});

// Видео-плеер
function VideoPlayer(id, video, width, height) {

    var flashvars = {
        st: '/media/flash/uppod_video.txt',
        file: '/uploads/media/video/' + video
    };
    var params = {
        wmode: 'transparent',
        bgcolor: '#ffffff',
        allowFullScreen: 'true',
        allowScriptAccess: 'always'
    };
    var attributes = {
        id: id,
        name: id
    };
    
    swfobject.embedSWF('/media/flash/uppod.swf', id, width, height, '9.0.0', false, flashvars, params, attributes);
}
