$(window).load(function() {
	$('#slider-top').nivoSlider({
		effect : 'fade',
		startSlide : 0,
		pauseTime: 5000,
		animeTime: 70000,
		directionNav : false,
		controlNav : false,
		pauseOnHover: false
	});
	
	$('.box-service').hover(function() {
		var a = $(this).find('a'); 
    if(a.hasClass('hover')) {
      a.removeClass('hover');
    } else {
      a.addClass('hover');
    }
  });
});
