

function reloadSermon() {
  /*$.ajax({
  	type: "GET",
	cache:'false',
    url:'http://www.crossoverworship.com/wp-content/themes/therapy/video-player.php',
    dataType: "html",
    success:function(data) {
      $('#intro *').remove();
      $('#intro').html(data);
    }
  });*/
  window.location = 'http://www.crossoverworship.com/live/';
}

$(document).ready(function() {

$.fn.wait = function(time, type) {
        time = time || 1000;
        type = type || "fx";
        return this.queue(type, function() {
            var self = this;
            setTimeout(function() {
                $(self).dequeue();
            }, time);
        });
    };

});