$(function() {
$('#linkuri-video a').bind('click', function() {
var s1 = new SWFObject('http://itchannel.ro/_videoplayer/videoplayer.swf','mpl','290','225','0');
var title = $(this).text();
s1.addParam('allowfullscreen','true');
s1.addParam('allowscriptaccess','always');
s1.addParam('wmode','opaque');
//s1.addParam('flashvars','file=' + this.href + '&link=' + this.href);
//s1.addParam('file=http://www.youtube.com/watch?v=4yFWFDfvOv8&link=http://www.youtube.com/watch?v=4yFWFDfvOv8');
//s1.addVariable("file", this.href);
//s1.addVariable("link", this.href);
s1.addVariable("file",this.href);
s1.addVariable("link",this.href);
s1.addVariable("enablejs","true");
s1.addVariable("javascriptid","mpl");
s1.addVariable("autostart","true");
s1.addVariable("image", "http://itchannel.ro/_videoplayer/movies/video-preview.jpg");

s1.write('MPlayer');
s1 = null;
$("#videoName").html(title);
return false;
});
});


