$(function(){
	$('#cuwrapper li').each(function (i) {
		var imgpath = $(this).find('strong').text();
		$('<img>').attr('src', imgpath);
	});

	$('#cuwrapper li').css('opacity','0.6');
	var crnt = $('.link1').attr('class');
	$('.'+crnt).fadeTo(500, 1.0);
	
	$('#cutranslyr').css({
		'opacity': '0.6',
		'height': $('#cucaption').height(),
		'border-radius': '6px',
		'-moz-border-radius': '6px',
		'-webkit-border-radius': '6px'
	});
	
	$('#cuwrapper li').hover(
		function (){
			var tmpcrnt = $(this).attr('class');

			if(crnt!=tmpcrnt){
				crnt = $(this).attr('class');
				$('#cuwrapper li').fadeTo(150, 0.6);
				
				var newimgpath =$(this).find('strong').text();
				var newttlpath = $(this).find('em').text();					
				var newcappath = $(this).find('span').text();
				$(this).fadeTo(300, 1.0);
				
				$('#cuimage').attr('src', newimgpath).stop().hide().fadeTo(800, 1.0);
				$('#cucaption h3').text(newttlpath);
				$('#cucaption p').text(newcappath);
			}
		}
	);
});
