$(document).ready(function() {

  $('.cybertrak-top').corner("round top");
  $('.cybertrak-bottom').corner("round bottom");
  $('#latestNewsH').corner("round");
  //$('#specialOffer').corner("round");

  // Used in 'other services' box. Hides the page the user is currently on
  var path = location.pathname.substring(1);
  if ( path ) {
    $('#extraServices a[href$="' + path + '"]').hide();
  }


  $('#news-column *').removeAttr('style');
  $('#news-column ul,#news-column ul li').css('width', '225px');
  

  $('.slideshow').cycle({
		fx: 'scrollUp',
		timeout: 8000,
		pause: true
	});
	
	$('.services-slider').cycle({
	  //fx: 'scrollLeft',
		timeout: 8000,
		pause: true
	});
	
	$('#news-column ul').cycle({
	  //fx: 'scrollUp',
		timeout: 8000,
		pause: true,
		//containerResize: 1,
		//fit: 1
	});
	
	$('.news').cycle({
		timeout: 8000,
		pause: true,
		fit: 1
	});
	$('.news div').css('max-width', '225px');
	
  
  //$('#latestNewsH').insertAfter('#latestNews');
  
  if ($('#latestNewsH h4').text() == 'Latest News') {
    $('#latestNewsH h4').text('Latest News From FreightCare');
  }
  
  // Move date to show up after title instead of bottom
  $('#latestNews ul li').each(function() {
    $(this).children(':first-child').after($(this).children(':last-child'));
  });
  
  
});
