$(document).ready(function () {
	//kwicks begin
	$('.kwicks').kwicks({
		max : 574,
		spacing : 0,
		sticky : true,  
		event : 'mouseover',
		defaultKwick: 0
	});

//akcija begin
	$(".akcija img").hover(function(){
		$(this).stop().animate({top:"0"}, "fast")									 
	}, function (){
		$(this).stop().animate({top:"-39"}, "medium")
	});
	
});