$(document).ready(function() {


var fVideoID = $('#production .containerforScreens .item:first a').attr('href');
var fVitleVideo = $('#production .containerforScreens .item:first span').html();  
var fDescriptionVideo = $('#production .containerforScreens .item:first .descr').html();
var fImgPreview = $('#production .containerforScreens .item:first img').attr('src');

$('#production .videoBig h3').html(fVitleVideo);
$('#production .videoBig .descr').html(fDescriptionVideo);
$('#production  .videoBig .wrapper').html('<object width="590" height="450" type="application/x-shockwave-flash" data="/engine_lib/flash/belti_video.swf?contentFLV='+fVideoID+'" id="flvPlayer2" style="visibility: visible;"><param name="menu" value="false"><param name="scale" value="noscale"><param name="wmode" value="transparent"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="sameDomain"><param name="flashvars" value="toolBarVisible=true&amp;toolBarAutoHide=false&amp;toolBarOverMovie=false&amp;skinColor=white&amp;autoPlayMovie=false&amp;loopMovie=false&amp;roundCorner=false&amp;nameText=&amp;aboutText=&amp;buttonColor=8FC41C&amp;bgcolor=transparent&amp;startImage='+fImgPreview+'"></object>');



var sVideoID = $('#buffoonery .containerforScreens .item:first a').attr('href');  

$('#buffoonery .videoBig .wrapper').html('<object width="690" height="480" type="application/x-shockwave-flash" data="/engine_lib/flash/belti_video.swf?contentFLV='+sVideoID+'" id="flvPlayer2" style="visibility: visible;"><param name="menu" value="false"><param name="scale" value="noscale"><param name="wmode" value="transparent"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="sameDomain"><param name="flashvars" value="toolBarVisible=true&amp;toolBarAutoHide=false&amp;toolBarOverMovie=false&amp;skinColor=white&amp;autoPlayMovie=false&amp;loopMovie=false&amp;roundCorner=false&amp;nameText=&amp;aboutText=&amp;buttonColor=8FC41C&amp;bgcolor=transparent"></object>');



$('#production .containerforScreens .item a').click(function () {
var videoID = $(this).attr('href');
var titleVideo = $(this).find('span').html();  
var descriptionVideo = $(this).next('.descr').html();

$('#production  .videoBig .wrapper').html('<object width="590" height="450" type="application/x-shockwave-flash" data="/engine_lib/flash/belti_video.swf?contentFLV='+videoID+'" id="flvPlayer2" style="visibility: visible;"><param name="menu" value="false"><param name="scale" value="noscale"><param name="wmode" value="transparent"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="sameDomain"><param name="flashvars" value="toolBarVisible=true&amp;toolBarAutoHide=false&amp;toolBarOverMovie=false&amp;skinColor=white&amp;autoPlayMovie=true&amp;loopMovie=false&amp;roundCorner=false&amp;nameText=&amp;aboutText=&amp;buttonColor=8FC41C&amp;bgcolor=transparent"></object>');

$('.videoBig').find('h3').html(titleVideo);
$('.videoBig').find('.descr').html(descriptionVideo);
return false;
}); 


$('#buffoonery .containerforScreens .item a').click(function () {

var newvideoID = $(this).attr('href'); 

$('#buffoonery  .videoBig .wrapper').html('<object width="690" height="480" type="application/x-shockwave-flash" data="/engine_lib/flash/belti_video.swf?contentFLV='+newvideoID+'" id="flvPlayer2" style="visibility: visible;"><param name="menu" value="false"><param name="scale" value="noscale"><param name="wmode" value="transparent"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="sameDomain"><param name="flashvars" value="toolBarVisible=true&amp;toolBarAutoHide=false&amp;toolBarOverMovie=false&amp;skinColor=white&amp;autoPlayMovie=true&amp;loopMovie=false&amp;roundCorner=false&amp;nameText=&amp;aboutText=&amp;buttonColor=8FC41C&amp;bgcolor=transparent"></object>');

return false;
}); 
	
});
