$(document).ready(function() {
	$().UItoTop({ easingType: 'easeOutQuart' });
    $('.akciok').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	// when the DOM is ready:
$(document).ready(function () {
$('.fade').fadeTo(0, 0.5);
  // find the div.fade elements and hook the hover event
  $('.fade').hover(function() {
    
    $(this).stop().fadeTo(250, 1);
  }, function () {
    
      $(this).stop().fadeTo(250, 0.5);
  });
});
	
	
});

	function rjmp(link) {
		window.location = link;
	}
