// JavaScript Document

jQuery(document).ready(function($) {
																
																
	$('.youtube').click(function(){
			
			//alert( $(this).attr('href') );
			
			var video = $(this).attr("href");
			
			links = "text.php?v="+video;
			
			console.log(links);
			
			$(this).attr("href","../viewer/youtube-video.php?v="+video);
			
			
//			$(this).attr("href","/viewer/youtube-video.php?v="+video);
			
			var video = $(this).attr("href");					
					
			//alert(video);
			
			//return false;
		});
	
	
	$('.youtube').fancybox({									  
			titleShow: false,
			overlayShow:true,
			hideOnContentClick:false,
			hideOnOverlayClick: false
		});
	  
		
});


