 $(document).ready(function() {
   var images = $(".kutija ul li");

	$(images).hover(function(){
		  
		  var infoBox= $(".info", $(this));

		  $(infoBox).animate({
			marginTop: "-"+$(infoBox).height()
		  });
		  
		  
	},function(){

		  var infoBox= $(".info", $(this));
		  
		  $(infoBox).animate({
			marginTop: "0px"
		  });
		  
		  
	}); 
	
	$(".portItem").hover(function(){
		$(this).css("border","1px dashed #000000");
		$(".tooltip",this).fadeIn("normal");
	},function(){
		$(this).css("border","1px dashed #6D6E72");
		$(".tooltip",this).fadeOut("normal");
	});
   
 
 
   
   
 });
