//JQuery Goodness goes in here
jQuery(document).ready(function($){
  
  //So we don't screw over people with js disabled, hide the content using js
  $('#sliding-content ul li').css({
    'display' : 'none'
  });
  
  $('#sliding-content ul li:first-child').css({
    'display' : 'block'
  });
  
  $('#sliding-content ul').after('<div id="nav">').cycle({
  	fx: 'fade',
  	pager: '#nav',
  	next: '#sliding-content ul li',
  	cleartypeNoBg: true
  });
  
});
