$(document).ready(function(){
	
	$(".t_contentborder tr").hover(function(){
		$(this).addClass("over");
	},function(){
	  $(this).removeClass("over");
	});

	$(".t_contentborder tr:even").addClass("alt");

	$(".field").hover(function(){
		$(this).css("background", "#F6F8FA");		
	}, function(){
		$(this).css("background", "white");		
	})

	$(".submit").hover(function(){
		$(this).removeClass("submit");
		$(this).addClass("submitb");
	}, function() {
		$(this).removeClass("submitb");
		$(this).addClass("submit");		
	
	});

	$(".buttonb").hover(function(){
		$(this).css("text-decoration", "underline");				
	}, function() {
		$(this).css("text-decoration", "none");				
	
	});

	
	


	
	
	
});