var bindForm=function(hash){ 			
			$('form',hash.w).ajaxForm(function() {
			$('.video-info').hide();
            $('.video-thanks').show();
    }); 
	$('#videoContent').css('visibility','hidden');
	};
    
var hideLightBox=function(hash){
    hash.w.fadeOut('2000',function(){ $('#lightBoxTitle').html("Loading...");hash.o.remove(); });
	$('#videoContent').css('visibility','visible');
	
};

$(document).ready(function() {
  $('#video-container').jqm({ajax:'@href', target: 'div.video-content', onLoad:bindForm, trigger:'.jFXVideo', onHide:hideLightBox});
});

