function getStuff(){
	document.querySelector('#tuna').onclick=talk;
}/*showing alert by clicking on the first line, NOT WORKING WHITH THE SECOND JAVASCRIPT*/
function talk(){/*it`s choosing the first tuna*/
	alert('choose the first tuna');
}
window.onload=getStuff;


function getStuff(){
	var list = document.querySelectorAll('#tuna1');
	list[1].onclick=talk;/*showing [1] in Array it`s no` two*/
}/*choosing the third line, its make it like Array that why it work on the third line(tuna1)*/
function talk(){/*NOT WORKING WITH THE THIRD JAVASCRIPT*/
	alert('choose the third line second tuna');
}
window.onload=getStuff;


function getStuff(){
	var list = document.querySelectorAll('#tuna2');
	for(var i=0; i<list.length;i++){
		list[i].onclick=talk;
	}/*showing alert by clicking on the first and second line*/
}
function talk(){
	alert('choosing the first and the third');
}
window.onload=getStuff;
