 jQuery(document).ready( function(){
	
	// sv_handler change
	jQuery("#sv_tabs").bind("tabsselect", function(event, ui) {
		//alert(ui.index);
		if (ui.index == 0) {
			jQuery("#tab_flight").css("background-image","url(/styles/new/graphics/new/tab_home_flight_off_2.png)");
			jQuery("#tab_hotel").css("background-image","url(/styles/new/graphics/new/tab_home_hotel_off.png)");
		} else if (ui.index == 1) {
			jQuery("#tab_hotel").css("background-image","url(/styles/new/graphics/new/tab_home_hotel_off_2.png)");
		} else if (ui.index == 2) {
			jQuery("#tab_flight").css("background-image","url(/styles/new/graphics/new/tab_home_flight_off.png)");
		}
	});
	
	
});
 
