

jQuery(document).ready(function() {
	var highlights = jQuery('.highlights');
	
	jQuery('.highlights').css('opacity', 0);
	jQuery('#highlightsContainer').css('visibility', 'visible');
	
	jQuery('.ikona').each(function(i) {
		jQuery(this).mouseover(function() {
			jQuery(highlights[i]).stop(true).animate({
				opacity: 1,
				marginTop: '-15px'
			}, 500);
		}).mouseout(function(){
			jQuery(highlights[i]).stop().animate({
				opacity: 0,
				marginTop: '-0px'
			}, 500);
		});
	});
});