// JavaScript Document

$(document).ready(function() {

	// Cover Story
	$('.home_slide').cycle({
		fx: 'fade', 			// transition type, ex: fade, scrollUp, shuffle, etc...
      speed:   1000,			// time for transition to complete (millisecs)
      timeout: 5000			// time between start of each transition (millisecs)
	});
	 
});

