$(document).ready(function()
{
	// световни индекси
	$('.wic').click(function()
	{
		$('.wic').removeClass('sel');
		
		$(this).addClass('sel');
		
		var id = $(this).attr('id').replace('wic_', '');
		
		$.cookie('wi', id);

		
		$('.wi').css('display', 'none');
		

		$('#wi_' + id).css('display', '');
		
		return false;
	});
	
	
	// фючърси
	$('.fc').click(function()
	{
		
		
		$.each($('.fc'), function(index, value) {
			$(this).removeClass('sel');
		});
		
		$(this).addClass('sel');
		
		var id = $(this).attr('id').replace('fc_', '');
		$.cookie('f', id);
		
		$.each($('.f'), function(index, value) {
			$(this).css('display', 'none');
		});

		$('#f_' + id).css('display', '');
		
		return false;
	});
});
