Clicking the image in the left sidebar at http://vaiman.org/ we have too small YouTube box. I need to make YouTube area greater. How?
Here is my JavaScript code (http://vaiman.org/wp-content/themes/vaiman/javascript/youtube.js):
jQuery(document).ready(function() {
jQuery(".various").fancybox({
maxWidth : 1000/*850*/,
maxHeight : 1000/*638*/,
minWidth : 1000/*850*/,
minHeight : 1000/*638*/,
fitToView : false,
width : 1000/*'100%'*/ /*70%*/,
height : 1000/*'100%'*/ /*70%*/,
autoSize : false,
closeClick : false,
openEffect : 'none',
closeEffect : 'none'
});
});
What is my error?