function showHide(pElement) {

	if(document.getElementById(pElement).style.display=='none') {
		document.getElementById(pElement).style.display='block';
		document.getElementById('bt_sh_'+pElement).className="showHide_on";
	}
	else {
		document.getElementById(pElement).style.display='none';
		document.getElementById('bt_sh_'+pElement).className="showHide";
	}

}

/* -------------------------------------------------------------------------- */

function blink(pId) {

	$('#'+pId).animate({opacity:'0.1'}, 200);

	$('#'+pId).animate({opacity:'1.0'}, 300);

}

/* -------------------------------------------------------------------------- */

$(document).ready(function(){
	var timerid=setInterval("blink('iscrAperte')", 1000);

	setupZoom();
});

