$(document).ready(function()
{
	$('input[type=text].other').hide();
	$('dl.strong').hide();
	
  $('label input[type=radio]').click(function () {
  
  	if ($(this).parent().find('input.other').attr('checked')) {
  		$(this).parent().parent().find('input[type=text].other').show();
  		$(this).parent().parent().find('input[type=text].other').focus();
  	}
  	else {
  		$(this).parent().parent().find('input[type=text].other').hide();
  	}
  
  });
  
  for (var i=1;i<6;i++) {

  	$('dl.strong-'+i).hide();
  
  }
  
  $('dl.effect input').change(function () {
    	
  	
  	if ($(this).attr('type')=='checkbox'){
  		//vall=$(this).parent().text();
  		if ($(this).attr('checked')) {
  		  	$('dl.strong-'+$(this).attr('value')).show();
  		}
  		else {
  		  	$('dl.strong-'+$(this).attr('value')).hide();
  		}
  		if ($(this).hasClass('other')) {
  			if ($(this).attr('checked')){
  				$('dl.strong').show();
  				$(this).parent().parent().find('input.other').show();
  			}
  			else {
  				$('dl.strong').hide();
  				$(this).parent().parent().find('input[type=text].other').hide();
  			}
  		}
  	}
  	else {
  		vall=$(this).attr('value');
  		$('dl.strong label').html('Выделите сильные стороны поиска работы через <br /><strong>' + vall + '</strong>');
  	}
  	
  //alert (vall);
  	
  	
  	//
	//$('dl.strong').show();
	//$('dl.strong input').focus();
  
  
  });
  
  
  
});