В принципе решил вопрос, может кому пригодится:
window.onload = function() {
document.body.onclick = function(event) {
var t=event.target||event.srcElement;
if (t.id=='dr3'||t.id=='pr2') {
jQuery('#pr4').css('z-index', '-1');
}
else {
jQuery('#pr4').css('z-index', '1');
}
}
}