jQuery(document).ready(function() {
	$tables = jQuery('table.type_1');
	$n = $tables.size();
	
	for($i = 0; $i < $n; $i++) {
		$table = $tables.eq($i);
		$table.find('tr:even').attr('class','even');
		$table.find('tr:odd').attr('class','odd');
		$table.find('tr:eq(0)').attr('class','header');	
		$table.find('tr:eq(1)').attr('class','header');			
	}
	
	jQuery('#feedback_1').focus(function() { jQuery(this).css('background-position','0px -21px'); });
	jQuery('#feedback_1').blur(function() { jQuery(this).css('background-position','0px 0px'); });
	jQuery('#feedback_2').focus(function() { jQuery(this).css('background-position','0px -21px'); });
	jQuery('#feedback_2').blur(function() { jQuery(this).css('background-position','0px 0px'); });
	jQuery('#feedback_3').focus(function() { jQuery(this).css('background-position','0px -93px'); });
	jQuery('#feedback_3').blur(function() { jQuery(this).css('background-position','0px 0px'); });
	jQuery('#feedback_4').focus(function() { jQuery(this).css('background-position','0px -21px'); });
	jQuery('#feedback_4').blur(function() { jQuery(this).css('background-position','0px 0px'); });
});
