$(function() {
	$('.tpl_heads img.nameImage').each(function()
	{
		$(this).hover(function(){
			$(this).addClass('hover');
			var str = $(this).attr('id');
			str = str.replace(/nameImage/i, '');
			$('#nameLink' + str).addClass('visible');
		}, function() {
			$(this).removeClass('hover');
			$('.tpl_heads li.nameLink').removeClass('visible');
		});
	});
		
	$('.tpl_heads .text li a').each(function()
	{
		$(this).hover(function(){
			var str = $(this).parent().attr('id');
			str = str.replace(/previewImageLink/i, 'nameImage');
			$('img.nameImage:not(.' + str + ')').stop().fadeTo(350, .25);
			//$('img.' + str).removeClass('grey');
		}, function() {
			$('.tpl_heads .image img').stop().fadeTo(350, 1);
		});
	});
});