$(document).ready(function() {

		$('.show_thumb').click(function(e){
			e.preventDefault();
			this.blur();
			
			var test = $(this).parent().attr('class').slice(2,9);
			var url = $(e.target).parent().attr('href');

			if(test.length > 0){
				$("#"+test).children('span').hide();
			}
			

			if($(e.target).parent().parent().attr('id').slice(0,1) == 'r')
				$('#ruleshow_'+$(e.target).parent().parent().attr('id').slice(2,3)).attr('href', url).attr('title', url);
			else
				$('#ruleshow').attr('href', url).attr('title', url);
			
			$(this).parent().attr('class','a_'+$(this).attr('id'));
			
			var thumb = $(this).children('a').children('img').attr('src');
			var show = $(this).parent().prev().children('img').hide().attr('src', thumb).fadeIn('slow');
			
			$(this).children('span').fadeIn();
		});

		

});
