// start jquery functions
$(function() {

	$('#slider').cycle({ 
      fx:       'fade', 
      speed:    2000, 
      timeout:  4000
  });

	$('#logo-fader p').cycle({ 
      fx:       'fade', 
      speed:    2000, 
      timeout:  4000
  });

$("#two ul li:first").each(function(){
      $(this).addClass("first");
});
	
});