//Script to change the main image on the press page

//Change from link - if user click on link in the left bar


function changeFromLink(theID,theURL,theTitle){
	
	//Get the press list <ul> into a var
	 var press_list = document.getElementById('inner_left_list');
	 
     // Get all children of <ul> node
     var children = document.getElementById('inner_left_list').getElementsByTagName('a');      

     // Loop through the children and reset the color
     for(var i=0; i < children.length; i++) {
		if (children[i].style.color == 'black') {
			children[i].style.color='#999';
		}

     }
 
 	
	//Active link to black
	document.getElementById(theID).style.color='black';

	//Change main image and the link
	//If there is no link for the press article then don't add the link
	if (theURL != "#") {
		var imgSRC ='img_press/nomia_press_' + theID + '.jpg';
		document.getElementById('cell_mainimage').innerHTML = '<a href="' + theURL + '" target="_blank" id="mainPressImageLink"><img src="' + imgSRC + '" alt="NOMIA Press ' + theTitle + '" id="mainPressImage" /></a>';
	} else {
		var imgSRC ='img_press/nomia_press_' + theID + '.jpg';
		document.getElementById('cell_mainimage').innerHTML = '<img src="' + imgSRC + '" alt="NOMIA Press - ' + theTitle + ' - Sorry! No link with this image." id="mainPressImage" />';

	}
	
}