$(document).ready(function(){
	$('div.targetBox').hide();
	$('table.openBox').css("cursor","pointer");
});
$(function(){
	$('table.openBox').bind('click', function(){
		$('div.targetBox').slideDown('normal');
		$('table.openBox').removeAttr("style");
		$('p.targetBtn').hide();
	});
});
$(function(){
	$('table.openBox').bind('mouseover', function(){
		$('div.targetBox').focus();
	});
});

