/**
 * 
 * @version 
 * @author 
 */

$(function(){
	//Stripe Table
	$('table#result_table tr:even').addClass('stripe');
	
	// ClickList Customize
	var target = $('table#result_table tr td:not(.checkbox)');
	target.mouseover(function(){
		$(this).parent().addClass('clicklist');
	});
	target.mouseout(function(){
		$(this).parent().removeClass('clicklist');
	});
	target.click(function(){
		var loc = $(this).parent().find('a').attr('href');
		window.location.href = loc;
	});
	
	
	// Checkbox Control
	if($('td').is('.checkbox')) checkboxControl('.checkbox :checkbox');
});

