function stripeTables(id)
{
    $(id +' tr').each(function(i)
    {
        if(i %2){
            $(this).addClass('even');
        }
    });
}

function popupVideo(url)
{
	window.open('/video_popup.php?url='+url, '', 'width=458, height=480');
}

