// JavaScript Document
$(document).ready(function(){
	$(".input_style_text,.input_style_txt,.input_style_min,.input_style_max").focus(function(){
		$(this).css('border-color','#fc0');
	})
	$(".input_style_text,.input_style_txt,.input_style_min,.input_style_max").blur(function(){
		$(this).css('border-left-color','#aaa');
		$(this).css('border-top-color','#aaa');
		$(this).css('border-bottom-color','#ddd');
		$(this).css('border-right-color','#ddd');
	})

	$('.flightway_list,.billslist,.pnrinfo').hover(
		function () {$(this).css("background-color","#f8f8f8");},
		function () {$(this).css("background-color","");}
	);
	$(".flightway_line > ul[rel],.findlist ,.flightway_line_list").hover(
		function () {$(this).css("background-color","#ffd");},
		function () {$(this).css("background-color","");}
	);
});

