$(function() {
	$('.youtubeLink').each(function(){
		$(this).bind('click', function(){
			_gaq.push(['ga.__trackPageview',$(this).attr('rel')]);
			var href = $(this).attr('href');
			setTimeout(function(){
				if($(this).attr('target')=='_blank'){document.location=href;}
				else{window.open(href,'video');}
			}, 100);
	
			return false;

		});
	});

});


