
function closes(){

jQuery('#lbOverlay').hide();
jQuery('#video').hide();

}

function jumpbox(){
closes();
var left = (screen.width/2)-(400/2);
var top = (screen.height/2)-(700/2);
jQuery('#video').css('top',top);
jQuery('#video').css('left',left);
jQuery('#lbOverlay').show();
jQuery('#lbOverlay').css('width',jQuery('body').width());
jQuery('#lbOverlay').css('height',jQuery(document).height());
jQuery('#video').show();
jQuery('#contact_form').show();

}

jQuery(document).ready(function() {
			jQuery('#block_home ul').innerfade({
					speed: 2000,
					timeout: 7000,
					type: 'sequence',
					containerheight: '139px'
				});
err = jQuery('#video .error_feedback').html();
successer = jQuery('#successf').html();

if(err){

jumpbox();

}
if(successer){

jumpbox();

}
jQuery('.jumpbox').click(function(){

jumpbox();

});


});
