jQuery(function(){
$(document).ready(function() {
$("#playNewsletter").hide();
$(".predajci").hide();
$("#za").show();
$("#mapa area").click(function(){
pos = $(this).attr("class");
$(".predajci").hide();
$("#" + pos).fadeIn("slow");
return false;
});
});
});
