

(function($) {
function init() {

  $(".effectContainer").fadeTransition({pauseTime: 4000,
										 transitionTime: 1000,
										 ignore: "#introslide",
										 delayStart: 4000,
										 pauseOnMouseOver: true,
										 createNavButtons: true});
										           
  $("#back").click(function(e) { example3.prev(); e.preventDefault(); });
  $("#next").click(function(e) { example3.next(); e.preventDefault(); });
  
	 $("#jquery_jplayer_2").jPlayer({
		  ready: function () {
		   $(this).jPlayer("setMedia", {
			m4a: "http://www.markgold.co.za/tunes/mark-gold-tune1.mp3",
			oga: "http://www.hellosquare.co.za/markgold-tune/mark-gold-tune1.ogg"
		   }).jPlayer("play");//auto play
		  },
		  ended: function() {
			$(this).jPlayer("play");  //repeat
		  },
		  swfPath: "/scripts",
		  supplied: "m4a, oga"
	 });  
}


$(document).ready(init);
})(jQuery);
