//Will not run jQuery code until page is loaded (ready)
$(document).ready(function(){
	//Removes the hide class from all home-news-story classes inside the home-news-scroll div
	$('#home-rotator .home-news-story').removeClass('hide');
	
	$('#home-rotator').cycle({
    fx:   'fade',
    timeout: 6000, // milliseconds between slide transitions
    pause: 1
  });
});