<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Southpoint Church</title>
	<atom:link href="http://www.southpointchurch.co.za/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.southpointchurch.co.za</link>
	<description></description>
	<lastBuildDate>Sun, 19 May 2013 13:02:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Future Family</title>
		<link>http://www.southpointchurch.co.za/2013/05/future-family/</link>
		<comments>http://www.southpointchurch.co.za/2013/05/future-family/#comments</comments>
		<pubDate>Sun, 19 May 2013 13:02:36 +0000</pubDate>
		<dc:creator>adamstabler</dc:creator>
				<category><![CDATA[2013]]></category>
		<category><![CDATA[Current Series]]></category>

		<guid isPermaLink="false">http://www.southpointchurch.co.za/?p=1700</guid>
		<description><![CDATA[While some of us loved our &#8220;growin&#8217; up&#8221; years, others of us couldn&#8217;t wait to move out and start fresh. [...]]]></description>
	<style type="text/css"> .ttw-music-player{ width:600px !important; }.ttw-music-player .track-info, .ttw-music-player .player-controls{width:459px !important;} .ttw-music-player .progress-wrapper{width:398px !important;}</style><style type="text/css">
.ttw-music-player {
background:#666666;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .tracklist, .ttw-music-player .buy, .ttw-music-player .buyy, .ttw-music-player .buyyy, .ttw-music-player .description, .ttw-music-player .player .title, .ttw-music-player .artist, .ttw-music-player .artist-outer {
color:#ffffff;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .track-info .rating, .ttw-music-player .tracklist .rating {
	display:none !important;
}
</style>
<style type="text/css">
.rightdiv {
width:267px !important;
}
</style>
<link href="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/css/style.css" type="text/css" rel="stylesheet" media="screen" />
<script type="text/javascript" src="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/jquery-jplayer/jquery.jplayer.js"></script>
<script type="text/javascript">
/**
 * Originally created by 23rd and Walnut for Codebasehero.com, then modified for WordPress plugin by Enigma Digital
 * www.23andwalnut.com
 * www.codebasehero.com
 * www.enigmaweb.com.au
 * License: MIT License
 */

(function($) {
    $.fn.ttwMusicPlayer = function(playlist, userOptions) {
        var $self = this, defaultOptions, options, cssSelector, appMgr, playlistMgr, interfaceMgr, ratingsMgr, playlist,
                layout, ratings, myPlaylist, current;

        cssSelector = {
            jPlayer: "#jquery_jplayer",
            jPlayerInterface: '.jp-interface',
            playerPrevious: ".jp-interface .jp-previous",
            playerNext: ".jp-interface .jp-next",
            trackList:'.tracklist',
            tracks:'.tracks',
            track:'.track',
            trackRating:'.rating-bar',
            trackInfo:'.track-info',
            rating:'.rating',
			rating_succes:'.rating-succes',
            ratingLevel:'.rating-level',
            ratingLevelOn:'.on',
            title: '.title',
            duration: '.duration',
			price: '.price',
            buy:'.buy',
			buyy:'.buyy',
			buyyy:'.buyyy',
            buyNotActive:'.not-active',
			buyyNotActive:'.nott-active',
			buyyyNotActive:'.nottt-active',
			buyActive:'.isactive',
            playing:'.playing',
            moreButton:'.more',
            player:'.player',
            artist:'.artist',
            artistOuter:'.artist-outer',
            albumCover:'.img',
            description:'.description',
            descriptionShowing:'.showing'
        };

        defaultOptions = {
            ratingCallback:null,
            currencySymbol:'$',
            //buyText:'BUY',
			//buyyText:'BUY',
			//buyyyText:'BUY',
            tracksToShow:5,
            autoplay:false,
            jPlayer:{}
        };

        options = $.extend(true, {}, defaultOptions, userOptions);

        myPlaylist = playlist;

        current = 0;

        appMgr = function() {
            playlist = new playlistMgr();
            layout = new interfaceMgr();

            layout.buildInterface();
            playlist.init(options.jPlayer);

            //don't initialize the ratings until the playlist has been built, which wont happen until after the jPlayer ready event
            $self.bind('mbPlaylistLoaded', function() {
                $self.bind('mbInterfaceBuilt', function() {
                    ratings = new ratingsMgr();
                });
                layout.init();

            });
        };

        playlistMgr = function() {

            var playing = false, markup, $myJplayer = {},$tracks,showHeight = 0,remainingHeight = 0,$tracksWrapper, $more;

            markup = {
                listItem:'<li class="track">' +
                            '<span class="title"></span>' +
                            '<div class="rightdiv"><div class="button-float"><a href="#" class="buy" target="_blank"></a>' +
							'<a href="#" class="buyy" target="_blank"></a>' +
							'<a href="#" class="buyyy" target="_blank"></a></div>' +
                            '<div style="float:right;"><span class="duration"></span>' +
							'<span class="price"></span>'+
                            '<span class="votes"></span></div></div>' +
                        '</li>',
                ratingBar:'<span class="rating-level rating-bar"></span>'
            };

            function init(playlistOptions) {

                $myJplayer = $('.ttw-music-player .jPlayer-container');


                var jPlayerDefaults, jPlayerOptions;

                jPlayerDefaults = {
                    swfPath: "jquery-jplayer",
                    supplied: "mp3, oga",
                    solution:'html, flash',
                    cssSelectorAncestor:  cssSelector.jPlayerInterface,
                    errorAlerts: false,
                    warningAlerts: false
                };

                //apply any user defined jPlayer options
                jPlayerOptions = $.extend(true, {}, jPlayerDefaults, playlistOptions);

                $myJplayer.bind($.jPlayer.event.ready, function() {

                    //Bind jPlayer events. Do not want to pass in options object to prevent them from being overridden by the user
                    $myJplayer.bind($.jPlayer.event.ended, function(event) {
                        playlistNext();
                    });

                    $myJplayer.bind($.jPlayer.event.play, function(event) {
                        $myJplayer.jPlayer("pauseOthers");
                        $tracks.eq(current).addClass(attr(cssSelector.playing)).siblings().removeClass(attr(cssSelector.playing));
                    });

                    $myJplayer.bind($.jPlayer.event.playing, function(event) {
                        playing = true;
                    });

                    $myJplayer.bind($.jPlayer.event.pause, function(event) {
                        playing = false;
                    });

                    //Bind next/prev click events
                    $(cssSelector.playerPrevious).click(function() {
                        playlistPrev();
                        $(this).blur();
                        return false;
                    });

                    $(cssSelector.playerNext).click(function() {
                        playlistNext();
                        $(this).blur();
                        return false;
                    });

                    $self.bind('mbInitPlaylistAdvance', function(e) {
                        var changeTo = this.getData('mbInitPlaylistAdvance');

                        if (changeTo != current) {
                            current = changeTo;
                            playlistAdvance(current);
                        }
                        else {
                            if (!$myJplayer.data('jPlayer').status.srcSet) {
                                playlistAdvance(0);
                            }
                            else {
                                togglePlay();
                            }
                        }
                    });

                    buildPlaylist();
                    //If the user doesn't want to wait for widget loads, start playlist now
                    $self.trigger('mbPlaylistLoaded');

                    playlistInit(options.autoplay);
                });

                //Initialize jPlayer
                $myJplayer.jPlayer(jPlayerOptions);
            }

            function playlistInit(autoplay) {
                current = 0;

                if (autoplay) {
                    playlistAdvance(current);
                }
                else {
                    playlistConfig(current);
                    $self.trigger('mbPlaylistInit');
					//$myJplayer.jPlayer("play");
					
                }
            }

            function playlistConfig(index) {
                current = index;
                $myJplayer.jPlayer("setMedia", myPlaylist[current]);
            }

            function playlistAdvance(index) {
                playlistConfig(index);

                if (index >= options.tracksToShow)
                    showMore();

                $self.trigger('mbPlaylistAdvance');
                $myJplayer.jPlayer("play");
            }

            function playlistNext() {
                var index = (current + 1 < myPlaylist.length) ? current + 1 : 0;
                playlistAdvance(index);
            }

            function playlistPrev() {
                var index = (current - 1 >= 0) ? current - 1 : myPlaylist.length - 1;
                playlistAdvance(index);
            }

            function togglePlay() {
                if (!playing)
                    $myJplayer.jPlayer("play");
                else $myJplayer.jPlayer("pause");
            }

            function buildPlaylist() {
                var $ratings = $();

                $tracksWrapper = $self.find(cssSelector.tracks);

                //set up the html for the track ratings
                for (var i = 0; i < 10; i++)
                    $ratings = $ratings.add(markup.ratingBar);

                for (var j = 0; j < myPlaylist.length; j++) {
                    var $track = $(markup.listItem);

                    //since $ratings refers to a specific object, if we just use .html($ratings) we would be moving the $rating object from one list item to the next
                    $track.find(cssSelector.rating).html($ratings.clone());

                    $track.find(cssSelector.title).html(trackName(j));

                    $track.find(cssSelector.duration).html(duration(j));
					 $track.find(cssSelector.price).html(price(j));

                   // setRating('track', $track, j);

                    setBuyLink($track, j);
					setBuyyLink($track, j);
					setBuyyyLink($track, j);

                    $track.data('index', j);

                    $tracksWrapper.append($track);
                }

                $tracks = $(cssSelector.track);

                $tracks.slice(0, options.tracksToShow).each(function() {
                    showHeight += $(this).outerHeight();
                });

                $tracks.slice(options.tracksToShow, myPlaylist.length).each(function() {
                    remainingHeight += $(this).outerHeight();
                });

                if (remainingHeight > 0) {
                    var $trackList = $(cssSelector.trackList);

                    $tracksWrapper.height(showHeight);
                    $trackList.addClass('show-more-button');

                    $trackList.find(cssSelector.moreButton).click(function() {
                        $more = $(this);

                        showMore();
                    });
                }

                $tracks.find('.title').click(function() {
                    playlistAdvance($(this).parents('li').data('index'));
                });
            }

            function showMore() {
                if (isUndefined($more))
                    $more = $self.find(cssSelector.moreButton);

                $tracksWrapper.animate({height: showHeight + remainingHeight}, function() {
                    $more.animate({opacity:0}, function() {
                        $more.slideUp(function() {
                            $more.parents(cssSelector.trackList).removeClass('show-more-button');
                            $more.remove();

                        });
                    });
                });
            }

            function duration(index) {
                return !isUndefined(myPlaylist[index].duration) ? myPlaylist[index].duration : '-';
            }
			
			 function price(index) {
                return (!isUndefined(myPlaylist[index].price) ? options.currencySymbol + myPlaylist[index].price : '');
            }

            function setBuyLink($track, index) {
                if (!isUndefined(myPlaylist[index].buy)) {
                    $track.find(cssSelector.buy).addClass(attr(cssSelector.buyActive)).attr('href', myPlaylist[index].buy).html(buyText(index));
                }else{$track.find(cssSelector.buy).addClass(attr(cssSelector.buyNotActive));  }
            }
			
			function setBuyyLink($track, index) {
                if (!isUndefined(myPlaylist[index].buyy)) {
                    $track.find(cssSelector.buyy).addClass(attr(cssSelector.buyActive)).attr('href', myPlaylist[index].buyy).html(buyyText(index));
                }else{$track.find(cssSelector.buyy).addClass(attr(cssSelector.buyyNotActive));  }
            }
			
			function setBuyyyLink($track, index) {
                if (!isUndefined(myPlaylist[index].buyyy)) {
                    $track.find(cssSelector.buyyy).addClass(attr(cssSelector.buyActive)).attr('href', myPlaylist[index].buyyy).html(buyyyText(index));
                }else{$track.find(cssSelector.buyyy).addClass(attr(cssSelector.buyyyNotActive));  }
            }
			
			function buyyyText(index) {
                return  options.buyyyText;
            }
		
			function buyyText(index) {
                return  options.buyyText;
            }
			
            function buyText(index) {
                //return (!isUndefined(myPlaylist[index].price) ? options.currencySymbol + myPlaylist[index].price : '') + ' ' + options.buyText;
				return  options.buyText;
            }
			
            return{
                init:init,
                playlistInit:playlistInit,
                playlistAdvance:playlistAdvance,
                playlistNext:playlistNext,
                playlistPrev:playlistPrev,
                togglePlay:togglePlay,
                $myJplayer:$myJplayer
            };

        };

        ratingsMgr = function() {
			var $tracks = $self.find(cssSelector.track);
			//Handler for when user hovers over a rating
			$(cssSelector.rating).find(cssSelector.ratingLevel).hover(function() {
                    $(this).addClass('hover').prevAll().addClass('hover').end().nextAll().removeClass('hover');
            });
				//Restores previous rating when user is finished hovering (assuming there is no new rating)
			$(cssSelector.rating).mouseleave(function() {
                    $(this).find(cssSelector.ratingLevel).removeClass('hover');
            });
            

            function bindEvents() {
				$(cssSelector.rating_succes).css('display','none');
                //Set the new rating when the user clicks
                $(cssSelector.ratingLevel).click(function() {
                    var $this = $(this), rating = $this.parent().children().index($this) + 1, index;
					
					var trackname	=	$(cssSelector.title+':first').text();
					
					
					var postdata1	=	'action=my_special_ajax_call5&rating='+rating+'&trackname='+trackname;	
					//alert(postdata1);
					jQuery.ajax({
						type:'POST',
						url:'http://www.southpointchurch.co.za/wp-admin/admin-ajax.php',
						cache:false,
						data: postdata1,
						beforeSend:function(){
						
						},
						success:function(res){
							$(cssSelector.rating_succes).html(res).fadeIn(500).delay(1000).fadeOut(500);
							//window.setTimeout(function(){location.reload()},2000);
							
						}
				});
					
					
                    

                    $this.prevAll().add($this).addClass(attr(cssSelector.ratingLevelOn)).end().end().nextAll().removeClass(attr(cssSelector.ratingLevelOn));

                 
                });
            }

           

            bindEvents();
        };

        interfaceMgr = function() {

            var $player, $title, $artist, $albumCover;


            function init() {
                $player = $(cssSelector.player),
                        $title = $player.find(cssSelector.title),
                        $artist = $player.find(cssSelector.artist),
                        $albumCover = $player.find(cssSelector.albumCover);

                setDescription();

                $self.bind('mbPlaylistAdvance mbPlaylistInit', function() {
                    setTitle();
                    setArtist();
                    setRating('current', null, current);
                    setCover();
                });
            }

            function buildInterface() {
                var markup, $interface;

                //I would normally use the templating plugin for something like this, but I wanted to keep this plugin's footprint as small as possible
                markup = '<div class="ttw-music-player">' +
                        '<div class="player jp-interface">' +
                        '<div class="album-cover" id="check_cover">' +
                        '<span class="img"></span>' +
                        '            <span class="highlight"></span>' +
                        '        </div>' +
                        '        <div class="track-info">' +
                        '            <p class="title"></p>' +
                        '            <p class="artist-outer">By <span class="artist"></span></p>' +
                        '            <div class="rating">' +
                        '                <span class="rating-level rating-star"></span>' +
                        '                <span class="rating-level rating-star"></span>' +
                        '                <span class="rating-level rating-star"></span>' +
                        '                <span class="rating-level rating-star"></span>' +
                        '                <span class="rating-level rating-star"></span>' +
						'				<span class="rating-succes">Already rated</span>' +
                        '            </div>' +
                        '        </div>' +
                        '        <div class="player-controls">' +
                        '            <div class="main">' +
                        '                <div class="previous jp-previous"></div>' +
                        '                <div class="play jp-play"></div>' +
                        '                <div class="pause jp-pause"></div>' +
                        '                <div class="next jp-next"></div>' +
                        '<!-- These controls aren\'t used by this plugin, but jPlayer seems to require that they exist -->' +
                        '                <span class="unused-controls">' +
                        '                    <span class="jp-video-play"></span>' +
                        '                    <span class="jp-stop"></span>' +
                        '                    <span class="jp-mute"></span>' +
                        '                    <span class="jp-unmute"></span>' +
                        '                    <span class="jp-volume-bar"></span>' +
                        '                    <span class="jp-volume-bar-value"></span>' +
                        '                    <span class="jp-volume-max"></span>' +
                        '                    <span class="jp-current-time"></span>' +
                        '                    <span class="jp-duration"></span>' +
						'					 <span class="jp-price"></span>' +
                        '                    <span class="jp-full-screen"></span>' +
                        '                    <span class="jp-restore-screen"></span>' +
                        '                    <span class="jp-repeat"></span>' +
                        '                    <span class="jp-repeat-off"></span>' +
                        '                    <span class="jp-gui"></span>' +
                        '                </span>' +
                        '            </div>' +
                        '            <div class="progress-wrapper">' +
                        '                <div class="progress jp-seek-bar">' +
                        '                    <div class="elapsed jp-play-bar"></div>' +
                        '                </div>' +
                        '            </div>' +
                        '        </div>' +
                        '    </div>' +
                        '    <p class="description"></p>' +
                        '    <div class="tracklist">' +
                        '        <ol class="tracks"> </ol>' +
                        '        <div class="more">View More...</div>' +
                        '    </div>' +
                        '    <div class="jPlayer-container"></div>' +
                        '</div>';

                $interface = $(markup).css({display:'none', opacity:0}).appendTo($self).slideDown('slow', function() {
                    $interface.animate({opacity:1});

                    $self.trigger('mbInterfaceBuilt');
                });
            }

            function setTitle() {
                $title.html(trackName(current));
            }

            function setArtist() {
                if (isUndefined(myPlaylist[current].artist))
                    $artist.parent(cssSelector.artistOuter).animate({opacity:0}, 'fast');
                else {
                    $artist.html(myPlaylist[current].artist).parent(cssSelector.artistOuter).animate({opacity:1}, 'fast');
                }
            }

            function setCover() {
                $albumCover.animate({opacity:0}, 'fast', function() {
                    if (!isUndefined(myPlaylist[current].cover)) {
						$("#check_cover").removeClass('classtohide');
                        var now = current;
                        $('<img src="' + myPlaylist[current].cover + '" alt="album cover" />', this).imagesLoaded(function(){
                            if(now == current)
                                $albumCover.html($(this)).animate({opacity:1})
                        });
                    }else{
						document.getElementById("check_cover").className += " classtohide";	
					}
                });
            }

            function setDescription() {
                if (!isUndefined(options.description))
                    $self.find(cssSelector.description).html(options.description).addClass(attr(cssSelector.descriptionShowing)).slideDown();
            }

            return{
                buildInterface:buildInterface,
                init:init
            }

        };

        /** Common Functions **/
        function trackName(index) {
            if (!isUndefined(myPlaylist[index].title))
                return myPlaylist[index].title;
            else if (!isUndefined(myPlaylist[index].mp3))
                return fileName(myPlaylist[index].mp3);
            else if (!isUndefined(myPlaylist[index].oga))
                return fileName(myPlaylist[index].oga);
            else return '';
        }

        function fileName(path) {
            path = path.split('/');
            return path[path.length - 1];
        }

        function setRating(type, $track, index) {
            if (type == 'track') {
                if (!isUndefined(myPlaylist[index].rating)) {
                    applyTrackRating($track, myPlaylist[index].rating);
                }
            }
            else {
                //if the rating isn't set, use 0
                var rating = !isUndefined(myPlaylist[index].rating) ? Math.ceil(myPlaylist[index].rating) : 0;
                applyCurrentlyPlayingRating(rating);
            }
        }

        function applyCurrentlyPlayingRating(rating) {
            //reset the rating to 0, then set the rating defined above
            $self.find(cssSelector.trackInfo).find(cssSelector.ratingLevel).removeClass(attr(cssSelector.ratingLevelOn)).slice(0, rating).addClass(attr(cssSelector.ratingLevelOn));

        }


        /** Utility Functions **/
        function attr(selector) {
            return selector.substr(1);
        }

        function runCallback(callback) {
            var functionArgs = Array.prototype.slice.call(arguments, 1);

            if ($.isFunction(callback)) {
                callback.apply(this, functionArgs);
            }
        }

        function isUndefined(value) {
            return typeof value == 'undefined';
        }

        appMgr();
    };
})(jQuery);

(function($) {
// $('img.photo',this).imagesLoaded(myFunction)
// execute a callback when all images have loaded.
// needed because .load() doesn't work on cached images

// mit license. paul irish. 2010.
// webkit fix from Oren Solomianik. thx!

// callback function is passed the last image to load
//   as an argument, and the collection as `this`


    $.fn.imagesLoaded = function(callback) {
        var elems = this.filter('img'),
                len = elems.length;

        elems.bind('load',
                function() {
                    if (--len <= 0) {
                        callback.call(elems, this);
                    }
                }).each(function() {
            // cached images don't fire load sometimes, so we reset src.
            if (this.complete || this.complete === undefined) {
                var src = this.src;
                // webkit hack from http://groups.google.com/group/jquery-dev/browse_thread/thread/eee6ab7b2da50e1f
                // data uri bypasses webkit log warning (thx doug jones)
                this.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
                this.src = src;
            }
        });

        return this;
    };
})(jQuery);


</script><script type="text/javascript">
	
	
	var myPlaylist = [

 

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130519-Future-Family-Part1.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130519-Future-Family-Part1.ogg',
        title:'Part 1: Ideally Speaking',
        artist:'Andy Stanley',
		rating:'0',
        		buyyy:'http://northpointministries.org/messages/embed/future-family/only/part-1',
						buy:'http://media.southpoint.org.za/sermons/20130519-Future-Family-Part1.mp3',
						buyy:'http://northpointministries.org/downloads/futurefamily_week1.pdf',
				price:'',
        duration:'38:42',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/05/websq2.png'
		    }, 	];

	
        jQuery(document).ready(function(){
            jQuery('#myplayer').ttwMusicPlayer(myPlaylist, {
				
				currencySymbol:'',
				        		description:'',
				buyText:'Download',
				buyyText:'Discuss',
				buyyyText:'Watch',
								autoplay:false,
				        		
			});
        });
 
    </script>
			<content:encoded><![CDATA[<p>While some of us loved our &#8220;growin&#8217; up&#8221; years, others of us couldn&#8217;t wait to move out and start fresh.</p>
<p>Either way, we want our Future Family to be a step up from our families of origin. Most of us want something better for our children.</p>
<p>But what?</p>
<p>When it comes to family, what does a preferred future look like?</p>
<p>What exactly are we aiming for?</p>
<p>Well, whether you&#8217;re starting a new family, leaving an old one, or wondering if it&#8217;s worth the effort at all, join us this Sunday as we go back to the drawing board.</p>
<p>Presented by Andy Stanley</p>
<div id="myplayer"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.southpointchurch.co.za/2013/05/future-family/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Best Is Yet To Come</title>
		<link>http://www.southpointchurch.co.za/2013/05/the-best-is-yet-to-come/</link>
		<comments>http://www.southpointchurch.co.za/2013/05/the-best-is-yet-to-come/#comments</comments>
		<pubDate>Mon, 13 May 2013 13:13:10 +0000</pubDate>
		<dc:creator>adamstabler</dc:creator>
				<category><![CDATA[Current Series]]></category>

		<guid isPermaLink="false">http://www.southpointchurch.co.za/?p=1694</guid>
		<description><![CDATA[]]></description>
	<style type="text/css"> .ttw-music-player{ width:600px !important; }.ttw-music-player .track-info, .ttw-music-player .player-controls{width:459px !important;} .ttw-music-player .progress-wrapper{width:398px !important;}</style><style type="text/css">
.ttw-music-player {
background:#666666;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .tracklist, .ttw-music-player .buy, .ttw-music-player .buyy, .ttw-music-player .buyyy, .ttw-music-player .description, .ttw-music-player .player .title, .ttw-music-player .artist, .ttw-music-player .artist-outer {
color:#ffffff;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .track-info .rating, .ttw-music-player .tracklist .rating {
	display:none !important;
}
</style>
<style type="text/css">
.rightdiv {
width:267px !important;
}
</style>
<link href="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/css/style.css" type="text/css" rel="stylesheet" media="screen" />
<script type="text/javascript" src="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/jquery-jplayer/jquery.jplayer.js"></script>
<script type="text/javascript">
	
	
	var myPlaylist = [

 

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130512-The Best Is Yet To Come.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130512-The Best Is Yet To Come.ogg',
        title:'The Best is Yet to Come',
        artist:'John Hastings (intro by Mike Pelteret)',
		rating:'0',
        				buy:'http://media.southpoint.org.za/sermons/20130512-The Best Is Yet To Come.mp3',
						price:'',
        duration:'',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/05/The-best-is-yet-to-come-message.png'
		    }, 	];

	
        jQuery(document).ready(function(){
            jQuery('#myplayer').ttwMusicPlayer(myPlaylist, {
				
				currencySymbol:'',
				        		description:'',
				buyText:'Download',
				buyyText:'Discuss',
				buyyyText:'Watch',
								autoplay:false,
				        		
			});
        });
 
    </script>
			<content:encoded><![CDATA[<div id="myplayer"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.southpointchurch.co.za/2013/05/the-best-is-yet-to-come/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free</title>
		<link>http://www.southpointchurch.co.za/2013/04/free/</link>
		<comments>http://www.southpointchurch.co.za/2013/04/free/#comments</comments>
		<pubDate>Mon, 15 Apr 2013 09:53:36 +0000</pubDate>
		<dc:creator>adamstabler</dc:creator>
				<category><![CDATA[2013]]></category>
		<category><![CDATA[Archived Series]]></category>
		<category><![CDATA[Current Series]]></category>

		<guid isPermaLink="false">http://www.southpointchurch.co.za/?p=1667</guid>
		<description><![CDATA[Here are two Bible verses EVERYBODY can relate to: I do not understand what I do. For what I want [...]]]></description>
	<style type="text/css"> .ttw-music-player{ width:600px !important; }.ttw-music-player .track-info, .ttw-music-player .player-controls{width:459px !important;} .ttw-music-player .progress-wrapper{width:398px !important;}</style><style type="text/css">
.ttw-music-player {
background:#666666;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .tracklist, .ttw-music-player .buy, .ttw-music-player .buyy, .ttw-music-player .buyyy, .ttw-music-player .description, .ttw-music-player .player .title, .ttw-music-player .artist, .ttw-music-player .artist-outer {
color:#ffffff;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .track-info .rating, .ttw-music-player .tracklist .rating {
	display:none !important;
}
</style>
<style type="text/css">
.rightdiv {
width:267px !important;
}
</style>
<link href="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/css/style.css" type="text/css" rel="stylesheet" media="screen" />
<script type="text/javascript" src="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/jquery-jplayer/jquery.jplayer.js"></script>
<script type="text/javascript">
	
	
	var myPlaylist = [

 

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130414-Free-Part1.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130414-Free-Part1.ogg',
        title:'It’s Worse Than You Thought',
        artist:'Andy Stanley',
		rating:'0',
        		buyyy:'http://northpointministries.org/messages/embed/free/only/part-1',
						buy:'http://media.southpoint.org.za/sermons/20130414-Free-Part1.mp3',
						buyy:'http://northpointministries.org/downloads/free_wk1.pdf',
				price:'',
        duration:'36:52',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/free2.jpg'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130414-Free-Part2.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130414-Free-Part2.ogg',
        title:'Now You Know',
        artist:'Andy Stanley',
		rating:'0',
        		buyyy:'http://northpointministries.org/messages/embed/free/only/part-2',
						buy:'http://media.southpoint.org.za/sermons/20130414-Free-Part2.mp3',
						buyy:'http://northpointministries.org/downloads/free_wk2.pdf',
				price:'',
        duration:'39:04',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/free2.jpg'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130428-Free-Part3.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130428-Free-Part3.ogg',
        title:'Staying Dead',
        artist:'Andy Stanley',
		rating:'0',
        		buyyy:'http://northpointministries.org/messages/embed/free/only/part-3',
						buy:'http://media.southpoint.org.za/sermons/20130428-Free-Part3.mp3',
						buyy:'http://northpointministries.org/downloads/free_wk3.pdf',
				price:'',
        duration:'41:23',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/free2.jpg'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130505-Free-Part4.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130505-Free-Part4.ogg',
        title:'Lawless',
        artist:'Andy Stanley',
		rating:'0',
        		buyyy:'http://northpointministries.org/messages/embed/free/only/part-4',
						buy:'http://media.southpoint.org.za/sermons/20130505-Free-Part4.mp3',
						buyy:'http://northpointministries.org/downloads/free_wk4.pdf',
				price:'',
        duration:'45:36',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/free2.jpg'
		    }, 	];

	
        jQuery(document).ready(function(){
            jQuery('#myplayer').ttwMusicPlayer(myPlaylist, {
				
				currencySymbol:'',
				        		description:'',
				buyText:'Download',
				buyyText:'Discuss',
				buyyyText:'Watch',
								autoplay:false,
				        		
			});
        });
 
    </script>
			<content:encoded><![CDATA[<p>Here are two Bible verses EVERYBODY can relate to:</p>
<p>I do not understand what I do. For what I want to do I do not do, but what I hate, I do&#8230; For I have the desire to do what is good, but I cannot carry it out. Romans 7:15, 18 (NIV)</p>
<p>Can I get an Amen? Perhaps a Been there, done that? So what do you do when you just can&#8217;t seem to do what you know you ought to do? Fortunately, the gentleman who described the problem provided the answer.</p>
<div id="myplayer"></div>
<p>To download a message, right click and select &#8220;save link as&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.southpointchurch.co.za/2013/04/free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shocking Statements of Jesus</title>
		<link>http://www.southpointchurch.co.za/2013/03/shocking-statements-of-jesus/</link>
		<comments>http://www.southpointchurch.co.za/2013/03/shocking-statements-of-jesus/#comments</comments>
		<pubDate>Sun, 10 Mar 2013 11:00:28 +0000</pubDate>
		<dc:creator>Morgan</dc:creator>
				<category><![CDATA[2013]]></category>
		<category><![CDATA[Archived Series]]></category>

		<guid isPermaLink="false">http://southpoint.org.za/?p=1220</guid>
		<description><![CDATA[]]></description>
	<style type="text/css"> .ttw-music-player{ width:600px !important; }.ttw-music-player .track-info, .ttw-music-player .player-controls{width:459px !important;} .ttw-music-player .progress-wrapper{width:398px !important;}</style><style type="text/css">
.ttw-music-player {
background:#666666;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .tracklist, .ttw-music-player .buy, .ttw-music-player .buyy, .ttw-music-player .buyyy, .ttw-music-player .description, .ttw-music-player .player .title, .ttw-music-player .artist, .ttw-music-player .artist-outer {
color:#ffffff;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .track-info .rating, .ttw-music-player .tracklist .rating {
	display:none !important;
}
</style>
<style type="text/css">
.rightdiv {
width:267px !important;
}
</style>
<link href="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/css/style.css" type="text/css" rel="stylesheet" media="screen" />
<script type="text/javascript" src="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/jquery-jplayer/jquery.jplayer.js"></script>
<script type="text/javascript">
	
	
	var myPlaylist = [

 

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130310-Shocking Statements of Jesus-Part1.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130310-Shocking Statements of Jesus-Part1.ogg',
        title:'The Shocking Realization',
        artist:'Andy Stanley',
		rating:'0',
        				buy:'http://media.southpoint.org.za/sermons/20130310-Shocking Statements of Jesus-Part1.mp3',
						price:'',
        duration:'37:14',
        		cover:'http://southpointchurch.co.za/wp-content/uploads/2013/04/shockingstatements.jpg'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130317-Shocking Statements of Jesus-Part2.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130317-Shocking Statements of Jesus-Part2.ogg',
        title:'A Shocking Place',
        artist:'John Hastings',
		rating:'0',
        				buy:'http://media.southpoint.org.za/sermons/20130317-Shocking Statements of Jesus-Part2.mp3',
						price:'',
        duration:'32:47',
        		cover:'http://southpointchurch.co.za/wp-content/uploads/2013/04/shockingstatements.jpg'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130324-Shocking Statements of Jesus-Part3.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130324-Shocking Statements of Jesus-Part3.ogg',
        title:'A Shocking Relationship',
        artist:'Rodney Anderson',
		rating:'0',
        				buy:'http://media.southpoint.org.za/sermons/20130324-Shocking Statements of Jesus-Part3.mp3',
						price:'',
        duration:'41:55',
        		cover:'http://southpointchurch.co.za/wp-content/uploads/2013/04/shockingstatements.jpg'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130331-Shocking Statements of Jesus-Part4.mp3',
        oga:'/http://media.southpoint.org.zasermons/20130331-Shocking Statements of Jesus-Part4.ogg',
        title:'A Shocking Request',
        artist:'John Hastings',
		rating:'0',
        				buy:'http://media.southpoint.org.za/sermons/20130331-Shocking Statements of Jesus-Part4.mp3',
						price:'',
        duration:'36:27',
        		cover:'http://southpointchurch.co.za/wp-content/uploads/2013/04/shockingstatements.jpg'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130407-Shocking Statements of Jesus-Part5.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130407-Shocking Statements of Jesus-Part5.ogg',
        title:'A Shocking Reversal',
        artist:'Andy Stanley',
		rating:'0',
        				buy:'http://media.southpoint.org.za/sermons/20130407-Shocking Statements of Jesus-Part5.mp3',
						price:'',
        duration:'51:53',
        		cover:'http://southpointchurch.co.za/wp-content/uploads/2013/04/shockingstatements.jpg'
		    }, 	];

	
        jQuery(document).ready(function(){
            jQuery('#myplayer').ttwMusicPlayer(myPlaylist, {
				
				currencySymbol:'',
				        		description:'A lot of the things that Jesus said were shocking. Most would say they were extreme. Things like \"Love your enemies\", \"Pay your taxes\" and \"Eat my body\". This series was designed to explain that the shocking statements that Jesus made were nuggets of truth to help us see the world around us clearer.',
				buyText:'Download',
				buyyText:'Discuss',
				buyyyText:'Watch',
								autoplay:false,
				        		
			});
        });
 
    </script>
			<content:encoded><![CDATA[<div id="myplayer"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.southpointchurch.co.za/2013/03/shocking-statements-of-jesus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Journey Through 12</title>
		<link>http://www.southpointchurch.co.za/2013/03/journey-through-12/</link>
		<comments>http://www.southpointchurch.co.za/2013/03/journey-through-12/#comments</comments>
		<pubDate>Sun, 03 Mar 2013 14:03:24 +0000</pubDate>
		<dc:creator>Morgan</dc:creator>
				<category><![CDATA[2013]]></category>
		<category><![CDATA[Archived Series]]></category>

		<guid isPermaLink="false">http://southpoint.org.za/?p=1218</guid>
		<description><![CDATA[]]></description>
	<style type="text/css"> .ttw-music-player{ width:600px !important; }.ttw-music-player .track-info, .ttw-music-player .player-controls{width:459px !important;} .ttw-music-player .progress-wrapper{width:398px !important;}</style><style type="text/css">
.ttw-music-player {
background:#666666;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .tracklist, .ttw-music-player .buy, .ttw-music-player .buyy, .ttw-music-player .buyyy, .ttw-music-player .description, .ttw-music-player .player .title, .ttw-music-player .artist, .ttw-music-player .artist-outer {
color:#ffffff;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .track-info .rating, .ttw-music-player .tracklist .rating {
	display:none !important;
}
</style>
<style type="text/css">
.rightdiv {
width:267px !important;
}
</style>
<link href="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/css/style.css" type="text/css" rel="stylesheet" media="screen" />
<script type="text/javascript" src="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/jquery-jplayer/jquery.jplayer.js"></script>
<script type="text/javascript">
	
	
	var myPlaylist = [

 

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130303-JourneyThrough12.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130303-JourneyThrough12.ogg',
        title:'Journey Through Twelve',
        artist:'John Hastings',
		rating:'0',
        				buy:'http://media.southpoint.org.za/sermons/20130303-JourneyThrough12.mp3',
						price:'',
        duration:'40:29',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/Journey-Through-12-msg.jpg'
		    }, 	];

	
        jQuery(document).ready(function(){
            jQuery('#myplayer').ttwMusicPlayer(myPlaylist, {
				
				currencySymbol:'',
				        		description:'',
				buyText:'Download',
				buyyText:'Discuss',
				buyyyText:'Watch',
								autoplay:false,
				        		
			});
        });
 
    </script>
			<content:encoded><![CDATA[<div id="myplayer"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.southpointchurch.co.za/2013/03/journey-through-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Comparison Trap</title>
		<link>http://www.southpointchurch.co.za/2013/02/the-comparison-trap/</link>
		<comments>http://www.southpointchurch.co.za/2013/02/the-comparison-trap/#comments</comments>
		<pubDate>Sun, 10 Feb 2013 14:02:34 +0000</pubDate>
		<dc:creator>Morgan</dc:creator>
				<category><![CDATA[2013]]></category>
		<category><![CDATA[Archived Series]]></category>

		<guid isPermaLink="false">http://southpoint.org.za/?p=1216</guid>
		<description><![CDATA[]]></description>
	<style type="text/css"> .ttw-music-player{ width:600px !important; }.ttw-music-player .track-info, .ttw-music-player .player-controls{width:459px !important;} .ttw-music-player .progress-wrapper{width:398px !important;}</style><style type="text/css">
.ttw-music-player {
background:#666666;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .tracklist, .ttw-music-player .buy, .ttw-music-player .buyy, .ttw-music-player .buyyy, .ttw-music-player .description, .ttw-music-player .player .title, .ttw-music-player .artist, .ttw-music-player .artist-outer {
color:#ffffff;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .track-info .rating, .ttw-music-player .tracklist .rating {
	display:none !important;
}
</style>
<style type="text/css">
.rightdiv {
width:267px !important;
}
</style>
<link href="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/css/style.css" type="text/css" rel="stylesheet" media="screen" />
<script type="text/javascript" src="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/jquery-jplayer/jquery.jplayer.js"></script>
<script type="text/javascript">
	
	
	var myPlaylist = [

 

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130210-The-Comparison-Trap-Part1.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130210-The-Comparison-Trap-Part1.ogg',
        title:'The Land of Er',
        artist:'Andy Stanley',
		rating:'0',
        		buyyy:'http://www.northpoint.org/messages/comparison-trap',
						buy:'http://media.southpoint.org.za/sermons/20130210-The-Comparison-Trap-Part1.mp3',
						buyy:'http://www.groupcurriculum.org/questions/questions.jsp?messageID=1029',
				price:'',
        duration:'40:46',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/comparison-trap.jpg'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130217-The-Comparison-Trap-Part2.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130217-The-Comparison-Trap-Part2.ogg',
        title:'Looking Around',
        artist:'Andy Stanley',
		rating:'0',
        		buyyy:'http://www.northpoint.org/messages/comparison-trap',
						buy:'http://media.southpoint.org.za/sermons/20130217-The-Comparison-Trap-Part2.mp3',
						buyy:'http://www.groupcurriculum.org/questions/questions.jsp?messageID=1030',
				price:'',
        duration:'36:46',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/comparison-trap.jpg'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130224-The-Comparison-Trap-Part3.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130224-The-Comparison-Trap-Part3.ogg',
        title:'Two Bags Full',
        artist:'Andy Stanley',
		rating:'0',
        		buyyy:'http://www.northpoint.org/messages/comparison-trap',
						buy:'http://media.southpoint.org.za/sermons/20130224-The-Comparison-Trap-Part3.mp3',
						buyy:'http://www.groupcurriculum.org/questions/questions.jsp?messageID=1032',
				price:'',
        duration:'40.27',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/comparison-trap.jpg'
		    }, 	];

	
        jQuery(document).ready(function(){
            jQuery('#myplayer').ttwMusicPlayer(myPlaylist, {
				
				currencySymbol:'',
				        		description:'There’s NO win in COMPARISON. Let’s face it. Not a day goes by that you’re not tempted to glance to the left and to the right to see how you measure up to the people around you. But it doesn’t stop there, does it? You’re tempted to compare your children to other children, your spouse to other spouses! It’s frustrating. It’s exhausting. It’s a TRAP! In this 3-part series, Andy Stanley explores the difficult—but not impossible —challenge of escaping The Comparison Trap.',
				buyText:'Download',
				buyyText:'Discuss',
				buyyyText:'Watch',
								autoplay:false,
				        		
			});
        });
 
    </script>
			<content:encoded><![CDATA[<div id="myplayer"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.southpointchurch.co.za/2013/02/the-comparison-trap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Night of Worship with Andy Stanley Live</title>
		<link>http://www.southpointchurch.co.za/2013/01/night-of-worship-with-andy-stanley-live/</link>
		<comments>http://www.southpointchurch.co.za/2013/01/night-of-worship-with-andy-stanley-live/#comments</comments>
		<pubDate>Tue, 29 Jan 2013 14:02:24 +0000</pubDate>
		<dc:creator>Morgan</dc:creator>
				<category><![CDATA[2013]]></category>
		<category><![CDATA[Archived Series]]></category>
		<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://southpoint.org.za/?p=1214</guid>
		<description><![CDATA[]]></description>
	<style type="text/css"> .ttw-music-player{ width:600px !important; }.ttw-music-player .track-info, .ttw-music-player .player-controls{width:459px !important;} .ttw-music-player .progress-wrapper{width:398px !important;}</style><style type="text/css">
.ttw-music-player {
background:#666666;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .tracklist, .ttw-music-player .buy, .ttw-music-player .buyy, .ttw-music-player .buyyy, .ttw-music-player .description, .ttw-music-player .player .title, .ttw-music-player .artist, .ttw-music-player .artist-outer {
color:#ffffff;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .track-info .rating, .ttw-music-player .tracklist .rating {
	display:none !important;
}
</style>
<style type="text/css">
.rightdiv {
width:267px !important;
}
</style>
<link href="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/css/style.css" type="text/css" rel="stylesheet" media="screen" />
<script type="text/javascript" src="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/jquery-jplayer/jquery.jplayer.js"></script>
<script type="text/javascript">
	
	
	var myPlaylist = [

 

   
   
    {
        mp3:' http://media.southpoint.org.za/sermons/20130129-NOW-Andy-Stanley.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130129-NOW-Andy-Stanley.ogg',
        title:'Night of Worship with Andy Stanley Live',
        artist:' Andy Stanley',
		rating:'0',
        				buy:' http://media.southpoint.org.za/sermons/20130129-NOW-Andy-Stanley.mp3',
						price:'',
        duration:'48:42',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/NOW-Andy-message.jpg'
		    }, 	];

	
        jQuery(document).ready(function(){
            jQuery('#myplayer').ttwMusicPlayer(myPlaylist, {
				
				currencySymbol:'',
				        		description:'Night of Worship with Andy Stanley Live',
				buyText:'Download',
				buyyText:'Discuss',
				buyyyText:'Watch',
								autoplay:false,
				        		
			});
        });
 
    </script>
			<content:encoded><![CDATA[<div id="myplayer"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.southpointchurch.co.za/2013/01/night-of-worship-with-andy-stanley-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Four Things</title>
		<link>http://www.southpointchurch.co.za/2013/01/four-things/</link>
		<comments>http://www.southpointchurch.co.za/2013/01/four-things/#comments</comments>
		<pubDate>Sun, 13 Jan 2013 14:00:59 +0000</pubDate>
		<dc:creator>Morgan</dc:creator>
				<category><![CDATA[2013]]></category>
		<category><![CDATA[Archived Series]]></category>

		<guid isPermaLink="false">http://southpoint.org.za/?p=1212</guid>
		<description><![CDATA[]]></description>
	<style type="text/css"> .ttw-music-player{ width:600px !important; }.ttw-music-player .track-info, .ttw-music-player .player-controls{width:459px !important;} .ttw-music-player .progress-wrapper{width:398px !important;}</style><style type="text/css">
.ttw-music-player {
background:#666666;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .tracklist, .ttw-music-player .buy, .ttw-music-player .buyy, .ttw-music-player .buyyy, .ttw-music-player .description, .ttw-music-player .player .title, .ttw-music-player .artist, .ttw-music-player .artist-outer {
color:#ffffff;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .track-info .rating, .ttw-music-player .tracklist .rating {
	display:none !important;
}
</style>
<style type="text/css">
.rightdiv {
width:267px !important;
}
</style>
<link href="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/css/style.css" type="text/css" rel="stylesheet" media="screen" />
<script type="text/javascript" src="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/jquery-jplayer/jquery.jplayer.js"></script>
<script type="text/javascript">
	
	
	var myPlaylist = [

 

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130113-4things-part1.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130113-4things-part1.ogg',
        title:'Connect',
        artist:'Pat Moore',
		rating:'0',
        				buy:'http://media.southpoint.org.za/sermons/20130113-4things-part1.mp3',
						price:'',
        duration:'31:22',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/4_Things.png'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130120-4things-part2.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130120-4things-part2.ogg',
        title:'Serve',
        artist:'John Hastings',
		rating:'0',
        				buy:'http://media.southpoint.org.za/sermons/20130120-4things-part2.mp3',
						price:'',
        duration:'39:21',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/4_Things.png'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130127-4things-part3.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130127-4things-part3.ogg',
        title:'Invite',
        artist:'John Hastings',
		rating:'0',
        				buy:'http://media.southpoint.org.za/sermons/20130127-4things-part3.mp3',
						price:'',
        duration:'34:36',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/4_Things.png'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20130203-4things-part4.mp3',
        oga:'http://media.southpoint.org.za/sermons/20130203-4things-part4.ogg',
        title:'Give',
        artist:'John Hastings',
		rating:'0',
        				buy:'http://media.southpoint.org.za/sermons/20130203-4things-part4.mp3',
						price:'',
        duration:'36:33',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/4_Things.png'
		    }, 	];

	
        jQuery(document).ready(function(){
            jQuery('#myplayer').ttwMusicPlayer(myPlaylist, {
				
				currencySymbol:'',
				        		description:'',
				buyText:'Download',
				buyyText:'Discuss',
				buyyyText:'Watch',
								autoplay:false,
				        		
			});
        });
 
    </script>
			<content:encoded><![CDATA[<div id="myplayer"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.southpointchurch.co.za/2013/01/four-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joy</title>
		<link>http://www.southpointchurch.co.za/2012/12/joy/</link>
		<comments>http://www.southpointchurch.co.za/2012/12/joy/#comments</comments>
		<pubDate>Sun, 16 Dec 2012 14:00:06 +0000</pubDate>
		<dc:creator>Morgan</dc:creator>
				<category><![CDATA[2012]]></category>
		<category><![CDATA[Archived Series]]></category>

		<guid isPermaLink="false">http://southpoint.org.za/?p=1210</guid>
		<description><![CDATA[]]></description>
	<style type="text/css"> .ttw-music-player{ width:600px !important; }.ttw-music-player .track-info, .ttw-music-player .player-controls{width:459px !important;} .ttw-music-player .progress-wrapper{width:398px !important;}</style><style type="text/css">
.ttw-music-player {
background:#666666;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .tracklist, .ttw-music-player .buy, .ttw-music-player .buyy, .ttw-music-player .buyyy, .ttw-music-player .description, .ttw-music-player .player .title, .ttw-music-player .artist, .ttw-music-player .artist-outer {
color:#ffffff;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .track-info .rating, .ttw-music-player .tracklist .rating {
	display:none !important;
}
</style>
<style type="text/css">
.rightdiv {
width:267px !important;
}
</style>
<link href="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/css/style.css" type="text/css" rel="stylesheet" media="screen" />
<script type="text/javascript" src="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/jquery-jplayer/jquery.jplayer.js"></script>
<script type="text/javascript">
	
	
	var myPlaylist = [

 

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20121216-Joy.mp3',
        oga:'http://media.southpoint.org.za/sermons/20121216-Joy.ogg',
        title:'Joy',
        artist:'John Hastings',
		rating:'0',
        				buy:'http://media.southpoint.org.za/sermons/20121216-Joy.mp3',
						price:'',
        duration:'32:44',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/JOYmessages.png'
		    }, 	];

	
        jQuery(document).ready(function(){
            jQuery('#myplayer').ttwMusicPlayer(myPlaylist, {
				
				currencySymbol:'',
				        		description:'Jesus - Others - Yourself',
				buyText:'Download',
				buyyText:'Discuss',
				buyyyText:'Watch',
								autoplay:false,
				        		
			});
        });
 
    </script>
			<content:encoded><![CDATA[<div id="myplayer"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.southpointchurch.co.za/2012/12/joy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Be Rich 2012</title>
		<link>http://www.southpointchurch.co.za/2012/11/be-rich-2012/</link>
		<comments>http://www.southpointchurch.co.za/2012/11/be-rich-2012/#comments</comments>
		<pubDate>Sun, 18 Nov 2012 10:44:04 +0000</pubDate>
		<dc:creator>Morgan</dc:creator>
				<category><![CDATA[2012]]></category>
		<category><![CDATA[Archived Series]]></category>

		<guid isPermaLink="false">http://www2.southpointchurch.co.za/?p=353</guid>
		<description><![CDATA[We live in a world loaded with information about how to get rich.<br /> But nobody&#8217;s saying much about what [...]]]></description>
	<style type="text/css"> .ttw-music-player{ width:600px !important; }.ttw-music-player .track-info, .ttw-music-player .player-controls{width:459px !important;} .ttw-music-player .progress-wrapper{width:398px !important;}</style><style type="text/css">
.ttw-music-player {
background:#666666;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .tracklist, .ttw-music-player .buy, .ttw-music-player .buyy, .ttw-music-player .buyyy, .ttw-music-player .description, .ttw-music-player .player .title, .ttw-music-player .artist, .ttw-music-player .artist-outer {
color:#ffffff;
!important;
}
</style>
<style type="text/css">
.ttw-music-player .track-info .rating, .ttw-music-player .tracklist .rating {
	display:none !important;
}
</style>
<style type="text/css">
.rightdiv {
width:267px !important;
}
</style>
<link href="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/css/style.css" type="text/css" rel="stylesheet" media="screen" />
<script type="text/javascript" src="http://www.southpointchurch.co.za/wp-content/plugins/html5-jquery-audio-player-pro/includes/jquery-jplayer/jquery.jplayer.js"></script>
<script type="text/javascript">
	
	
	var myPlaylist = [

 

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20121118-BeRich-Part1.mp3',
        oga:'http://media.southpoint.org.za/sermons/20121118-BeRich-Part1.ogg',
        title:'Good for Nothing',
        artist:'Andy Stanley',
		rating:'0',
        		buyyy:'http://www.northpoint.org/messages/how-to-be-rich-2012',
						buy:'http://media.southpoint.org.za/sermons/20121118-BeRich-Part1.mp3',
						buyy:'http://www.groupcurriculum.org/questions/questions.jsp?messageID=1123',
				price:'',
        duration:'40:46',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/BeRich2012_msg.png'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20121125-BeRich-Part2.mp3',
        oga:'http://media.southpoint.org.za/sermons/20121125-BeRich-Part2.ogg',
        title:'Side Effects',
        artist:'Andy Stanley',
		rating:'0',
        		buyyy:'http://www.northpoint.org/messages/how-to-be-rich-2012',
						buy:'http://media.southpoint.org.za/sermons/20121125-BeRich-Part2.mp3',
						buyy:'http://www.groupcurriculum.org/questions/questions.jsp?messageID=1124',
				price:'',
        duration:'38:47',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/BeRich2012_msg.png'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20121202-BeRich-Part3.mp3',
        oga:'http://media.southpoint.org.za/sermons/20121202-BeRich-Part3.ogg',
        title:'Dollar Cost Living',
        artist:'Andy Stanley',
		rating:'0',
        		buyyy:'http://www.northpoint.org/messages/how-to-be-rich-2012',
						buy:'http://media.southpoint.org.za/sermons/20121202-BeRich-Part3.mp3',
						buyy:'http://www.groupcurriculum.org/questions/questions.jsp?messageID=1125',
				price:'',
        duration:'40:42',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/BeRich2012_msg.png'
		    },  

   
   
    {
        mp3:'http://media.southpoint.org.za/sermons/20121209-BeRich-Part4.mp3',
        oga:'http://media.southpoint.org.za/sermons/20121209-BeRich-Part4.ogg',
        title:'Diversify',
        artist:'Andy Stanley',
		rating:'0',
        		buyyy:'http://www.northpoint.org/messages/how-to-be-rich-2012',
						buy:'http://media.southpoint.org.za/sermons/20121209-BeRich-Part4.mp3',
						buyy:'http://www.groupcurriculum.org/questions/questions.jsp?messageID=1126',
				price:'',
        duration:'39:41',
        		cover:'http://www.southpointchurch.co.za/wp-content/uploads/2013/04/BeRich2012_msg.png'
		    }, 	];

	
        jQuery(document).ready(function(){
            jQuery('#myplayer').ttwMusicPlayer(myPlaylist, {
				
				currencySymbol:'',
				        		description:'',
				buyText:'Download',
				buyyText:'Discuss',
				buyyyText:'Watch',
								autoplay:false,
				        		
			});
        });
 
    </script>
			<content:encoded><![CDATA[<p>We live in a world loaded with information about how to <em>get</em> rich.<br />
But nobody&#8217;s saying much about what to do when you cross that elusive line between <em>not rich</em> and <em>rich</em>.</p>
<div id="myplayer"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.southpointchurch.co.za/2012/11/be-rich-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
