$(document).ready(function() {
	addPlayerPopups();
});

function addPlayerPopups() {
	$("a").each( function() {
		if ( $(this).attr("rel") == "player" ) {
			$(this).click( function() {
				var popupSrc = $(this).attr("href");
				openPlayerPopup(popupSrc);
				return false;
			});
		}
	});
}

function openPlayerPopup(popupSrc) {
	window.open(popupSrc, 'player', 'height=286,width=306,location=no,menubar=no,resizeable=no,scrollbars=no,status=no,toolbar=no');
}
