﻿jQuery(document).ready(function(){
	$("#feature-index ul li a").hover(
		function(){
			
			var parent=$(this).parent();
			
			var htmlText=parent.children(".dataProvider").html();
			var fIndex=htmlText.indexOf("[CDATA[");
			
			if(fIndex<0)fIndex=0;
			else fIndex=fIndex+7;
			var lIndex=htmlText.indexOf("]]");
			if(lIndex>0)htmlText=htmlText.substring(fIndex,lIndex);
				
			parent=parent.parent().parent().parent().children("#featuredSelected");
			
			parent.html(htmlText);
			
		}, 
		function(){
			
		}
	);
	
});

