var p;

$(document).ready(function(){
	
		$('#videos a.videoLink').live('click', function(){

			var v = $(this).attr("rel");
			p = window.open('popup.html?v='+v, 'video','scrollbars=0, resizeable=0, width=480, height=360');
			p.window.focus();

		});
		
	
});