// , opacity: 1

$(document).ready(function(){
	$(".tipsneeded1 :td").tooltip({
		position: ['center', 'right'],
		offset: [-2, 10],
		effect: 'toggle'
	});
	$(".tipsneeded2 :td").tooltip({
		position: ['center', 'left'],
		offset: [-2, -10],
		effect: 'toggle'
	});
	$("#resetbutton").click(function(){	
		$(':input','#calcform')
	    .not(':button, :submit, :reset, :hidden')
	    .removeAttr('value')
	    .removeAttr('checked')
	    .removeAttr('selected');
	    });
	    
$("input [type=text]").hover(function () { $(this).css({'border': 'solid 1px #0066FF'}); }, function () { $(this).css({'border': 'solid 1px #CCCCCC'}); });

$("#calculatebutton").hover(function () { $(this).css({'border': 'solid 1px #0066FF'}); }, function () { $(this).css({'border': 'solid 1px #000000'}); });
$("#resetbutton").hover(function () { $(this).css({'border': 'solid 1px #0066FF'}); }, function () { $(this).css({'border': 'solid 1px #000000'}); });

$("input").focus(function () { $(this).css({'border': 'solid 1px #0066FF'}); });

 $("input").blur(function () {
         $(this).css({'border': 'solid 1px #CCCCCC'});
    });
});




