// JavaScript Document
$(document).ready(function(){
	$('.vazni-linkovi a img').hover(function(){
		// animate opacity to full
$(this).animate(
	{opacity: 0.7}, 'fast');
},
// on mouse out
function () {
// animate opacity to nill
$(this).stop().animate({opacity: 1}, 'normal');
	});
});

