$(document).ready(function() {
	
	$(".input_text").focus(function() {
	$(this).addClass("input_focus")
	});
	$(".input_text").blur(function() {
		$(this).removeClass("input_focus")
	});
	
	$(".button").mouseover( function() {
		$(this).addClass('button_over');
	}).mouseout( function() {
		$(this).removeClass('button_over');
	});
	
	$("table.striped tr").mouseover( function() {
		$(this).addClass('table_over');
	}).mouseout( function() {
		$(this).removeClass('table_over');
	});
	
});