/*
* Use with Fancybox
*/

$(function(){
	$(".video_group").each(function(index){
		if (navigator.userAgent.indexOf('iPhone') > 0 || navigator.userAgent.indexOf('iPad') > 0 || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0) {
			var smartPhone = $(this).attr("smartphone");
			$(this).click(function(){
				window.open(smartPhone,'_blank');
				return false;
			});
		}
		else {
			var frameWidth = Number($(this).attr("width"));
			var frameHeight = Number($(this).attr("height"));
			
			$(this).fancybox({
				'padding' : 0,
				'titleShow' : false,
				'autoScale' : false,
				'transitionIn' : 'none',
				'transitionOut' : 'none',
				'type' : 'iframe',
				'width' : frameWidth,
				'height' : frameHeight
			});
		}
	});
});
