$(document).ready(function() {
	$("a[@rel*=fancyvideo]").fancybox({
		overlayShow: true,
		frameWidth:640,
		frameHeight:360
	});

	/* For single images use id=single_image in the link */
	$("a#single_image").fancybox({
		overlayShow: true,
		padding:20
	});
	
	/* For groups of images use class=group and rel=groupname in the link */
	$("a.group").fancybox({
		zoomSpeedIn:300, 
		zoomSpeedOut:300, 
		overlayShow:true
	});
	
});