$(document).ready(function(){
	//box
	$("body").delegate("a[rel=box]", "click", function(){
		$.fancybox({
			overlayShow: false,
			showNavArrows: false,
			transitionIn: "fade",
			transitionOut: "none",
			href: $(this).attr("href"),
			titleFormat: function(){
				return false;	
			}
		})
		return false;
	});
	
	//video
	$(".abreVideo").click(function() {
		$.fancybox({
			"width": 640,
			"height": 360,
			"href": this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			"type": 'swf',
			"swf": {
			"wmode": 'transparent',
			"allowfullscreen": "true",
			titleFormat: function(){
				return false;	
			}
		}
		});
		return false;
	});		
});

