$(document).ready( function() {
	
	$('.popisiWrap h1').click(function() {

	if($(this).next(".popisTrgovina").css("display") == "none"){
		$(".popisTrgovina").hide();		
		$(this).next(".popisTrgovina").show();
	}
	else if($(this).next(".popisTrgovina").css("display") == "block"){
		$(".popisTrgovina").hide();
	}
	});

}); //doc ready end// JavaScript Document
