/* Settings
    ----------------------------------- */
    var item = 2; // globalni promenna, nesahat
    var interval; // globalni promenna , nesahat
    var intervalTime = 8000; // 8s
    var opacitySpeed = 1000; // 1s 
    var totalItems; // celkovy pocet polozek    

$(document).ready(function() {



	$('a[href^="http://"]')
  .attr("target", "_blank");

    	$("#various1, #various3").fancybox({
				'titlePosition'		: 'inside',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'

    	});

    	$("#various5").fancybox({
    		'width'				: '75%',
    		'height'			: '75%',
    		'autoScale'			: false,
    		'transitionIn'		: 'none',
    		'transitionOut'		: 'none',
    		'type'				: 'iframe'
    	});

    });


$(document).ready(function(){
    $('#componentitem1').click(function(){
      sendValue('1');
    });
});

$(document).ready(function(){
    $('#componentitem2').click(function(){
      sendValue('2');
    });
});

$(document).ready(function(){
    $('#componentitem3').click(function(){
      sendValue('3');
    });
});

$(document).ready(function(){
    $('#componentitem4').click(function(){
      sendValue('4');
    });
});

function sendValue(str){
 $.post("/ajax/video.php", { sendToValue: str },
  function(data){
    $('#main_video').html(data.returnFromValue);
    $('a').removeClass('hover');
    $('#componentitem'+str).addClass('hover');
  }, "json");
}

