$(document).ready(function(){

	$(".YTV").unbind( 'click' ); 
	$(".YTV_btn").unbind( 'click' );
	
	
	$(".YTV").click( function(e){

		$(this).attr("height", "312");
		$(this).attr("width", "384");

		$("a", this).remove();
				
		$(this).unbind( 'click' );

	});
	
	
	$(".YTV_btn").click( function(e){

        e.preventDefault();


        var c_id = '.'+$(this).attr('id');
        
		$(c_id).attr("height", "312");
		$(c_id).attr("width", "384");
				
		$(this).unbind( 'click' );
		$(this).remove( );

	});

});
