
$(document).ready(function() {
    
    $('.video-box a').click(
          function () {

        		var popWidth = 480;

        		$('#popup').fadeIn().css({ 'width': Number( popWidth ) }).prepend('<div class="pop-close"><a href="#"><img src="/images/close-btn.png" title="Close Window" alt="Close" border="0" width="29" height="29"></a></div>');
        		$('#popup').append($('#popup-tmp').html());
        		
        		var popMargLeft = ($('#popup').width() + 80) / 2;

        		$('#popup').css({ 
        			'margin-left' : -popMargLeft
        		});

        		$('body').append('<div id="pop-fade"></div>');
        		$('#pop-fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); 

        		$('.pop-close a').live('click', function() {
        		  	$('#pop-fade').fadeOut(); 
        		  	$('.pop-close').remove(); 
        			$('#popup').hide().html("");

        			return false;
        		});
        		
          }
    );

});

	
