function swapVideo( port_id ) {
	$.get( "/video.php", {id:port_id}, function(data) {
		$('#thumbnails img').removeClass( 'thumbSelect' );
		$('#thumbnails img').fadeTo( 'fast', 1.0 );
		$('#thumb_'+port_id).addClass( 'thumbSelect' ).fadeTo('fast',0.5);
		$('#posterFrame').hide();
		$('#vidTitle').hide();
		$('#videoCode').empty().html( data ).show();
	} );
}

$(document).ready( function() {
	$('#posterFrame').click( function() {
		$(this).hide();
		$('#vidTitle').hide();
		$('#videoCode').show();
	} );
} );

