$(document).ready(function(){
	$("a[rel=video]").click(function(e){
		e.preventDefault();
		window.open($(this).attr("href"), "_blank", "width=640,height=420,location=no,resizable=no");
	});
});
