var $j = jQuery.noConflict();
$j(document).ready(function() {
  $j('#myRoundabout').roundabout({
     shape: 'figure8',
     btnNext: '#next',
     btnPrev: '#previous'
  });

	// add an onclick function to the services sections so if the user clicks any part of it, the page will load
	$j('.services h2 a').each(function(){
		var link = $j(this).attr('href');
		$j(this).parent().parent().wrap('<a href="' + link + '"></a>');
	});	
});
