var speed = 750;
var pause = 3000;

jQuery(document).ready(function($) {
	$('#banner-image-1').delay(pause).fadeOut(speed);
});

