/* Finds and adds the links to images in the image carousel. 
 * Links removed in the first place to allow images to display in google news results. See case 5831.
 */ 

$(document).ready(function(){	
	var imageList = document.getElementById('carouselImages');
	if (imageList) {
		//get image refrences
		var images = imageList.getElementsByTagName('img');
		//get link refrences
		var links = imageList.getElementsByTagName('a');
		for (i=0;i<images.length;i++) {
			//attach images to anchors
			links[i].appendChild(images[i]);
		}
    }
});

