//****************************************** METODY *****************************************************************

//*************************************** J Q U E R Y ****************************************************************
$(document).ready(function() {
    
	$("a.link").click(function() {
     	
 	    var href = $(this).attr("href"); 	  
 	    var newWindow = window.open(href, "_blank");
 	    newWindow.focus(); 
 	    return false;
 	
 	});
	
		
	$("a.fancy-one").fancybox();
		
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});
	
	$("a.fancy-gallery").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity':   0.7,
		'overlayColor'  :   '#000000',
		'titlePosition' :   'inside',
		'titleFormat'   :   function(title, currentArray, currentIndex, currentOpts) {
			return '<span class="fancybox-title-over-left"><span>Obrázek ' + (currentIndex + 1) + ' z ' + currentArray.length + '</span> - ' + title + '</span><span class="fancybox-title-over-right"><a class="link" href="http://www.1vision.cz"><img src="/Public/Jscripts/Fancybox/logo.png" /></a></span>';
	    }
	});
	
	
	
	$("a.fancy-video").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity':   0.7,
		'overlayColor'  :   '#000000',
		'titlePosition' :   'inside',
		'titleFormat'   :   function(title, currentArray, currentIndex, currentOpts) {
			return '<span class="fancybox-title-over-left">' + title + '</span><span class="fancybox-title-over-right"><a class="link" href="http://www.1vision.cz"><img src="/Public/Jscripts/Fancybox/logo.png" /></a></span>';
	    }

	});
	
});


function addBanner(url,width,height,element){
    html = '<embed wmode="transparent" width="'+width+'" height="'+height+'" quality="high" name="mymovie" id="mymovie" style="" src="'+url+'" type="application/x-shockwave-flash"/>';
    $(element).append(html);
                
}




