
$(document).ready(function() {
		$('#tab_panel input')
			.mouseover(function(){
				$(this).css('color', 'black')
			})
			.mouseout(function(){
				$(this).css('color', '#765')

		})
});



