
var inh_master = 0;
var inh_slave  = 0; 



function showMasterInh(a){
	document.getElementById('inh_master').value = a;
}

function showSlaveInh(b){
	document.getElementById('inh_slave').value = b;
}



function showSlaveBox(){
	document.getElementById('slave_element').style.display = 'inline';
}

function hideSlaveBox(){
	if(inh_slave == 0){
		document.getElementById('slave_element').style.display = 'none';
	};
}



$('#master_element').mouseover(function(){
	
	showSlaveBox();
	
	inh_master = 1;
	inh_slave  = 1;
	showMasterInh(inh_master);
	showSlaveInh(inh_slave);
});


$('#master_element').mouseout(function(){
	
	inh_master = 0;
	inh_slave  = 0;
	showMasterInh(inh_master);
	
	window.setInterval(hideSlaveBox(), 200);
	
});


$('#slave_element').mouseover(function(){

	inh_slave = 1;
	showSlaveInh(inh_slave);
	showMasterInh(inh_master);

	showSlaveBox();
});


$('#slave_element').mouseout(function(){

	inh_slave  = 0;
	showSlaveInh(inh_slave);

	window.setInterval(hideSlaveBox(), 200);
});


$('.underMenuOption').mouseover(function(){

	inh_slave = 1;
	showSlaveInh(inh_slave);
	showMasterInh(inh_master);

	showSlaveBox();
});


$('.underMenuOption').mouseout(function(){

	inh_slave  = 0;
	showSlaveInh(inh_slave);

	window.setInterval(hideSlaveBox(), 200);
});


