$(document).ready(function(){
$('.holder').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 8500, 
	pause:   1,
	next: '.next',
	prev: '.prev'
});
$('.box').last().addClass('no-border no-margin no-padding');
$('.menu li:last-child').css('marginRight', '12px');
$(".content a").not(".button").css('color', '#d93c21');
$(".content a").not(".button").hover(
  function () {
    $(this).css("color", "#9c2c19");
  }, 
  function () {
    $(this).css("color", "#d93c21");
  }
);
});
