$().ajaxStart($.blockUI).ajaxStop($.unblockUI);

$(function() {
			$('.ico .item_frame').tooltip({
						track : true,
						delay : 0,
						showURL : false,
						opacity : 1,
						fixPNG : true,
						showBody : " :: ",
						top : 10,
						left : 10,
						bodyHandler : function() {
							return $(this).attr('u_title');
						},
						extraClass : 'tooltip_username'
					});

			$('.u_redraw_set').live('click', function() {
				race = $(this).attr('race');
				sex = $(this).attr('sex');
				career_class = $(this).attr('career_class');
				eq_set = $(this).attr('eq_set');

				$.ajax({
							type : 'GET',
							url : '/library/ajax_set/get/' + career_class,
							cache : false,
							data : {
								'race' : race,
								'sex' : sex,
								'eq_set' : eq_set
							},
							success : function(xml) {
								$('#u_' + eq_set).html(xml);

								$('.ico .item_frame').tooltip({
											track : true,
											delay : 0,
											showURL : false,
											opacity : 1,
											fixPNG : true,
											showBody : " :: ",
											top : 10,
											left : 10,
											bodyHandler : function() {
												return $(this).attr('u_title');
											},
											extraClass : 'tooltip_username'
										});
							},
							error : function(XMLHttpRequest, textStatus,
									errorThrown) {
								alert('Произошла ошибка');
							}
						});

				return false;

			});
			
		$('.u_show_arena_quest_level_switcher').click(function(){
			$('.u_arena_quest_level').hide();
			$('.u_show_arena_quest_level_switcher').removeClass('color5');
			
			var id = $(this).attr('id').split('_').pop();
			
			//alert(id);
			//u_arena_quests_level_2
			$(this).addClass('color5');
			$('#u_arena_quests_level_' + id).show();
			
			return false;
			
		});
		
$('.u_show_horras_gifts_class_switcher').click(function(){
			$('.u_horras_gifts_class').hide();
			$('.u_show_horras_gifts_class_switcher').removeClass('color5');
			
			var id = $(this).attr('id').split('_').pop();
			
			//alert(id);
			//u_arena_quests_level_2
			$(this).addClass('color5');
			$('#u_horras_gifts_class_' + id).show();
			
			return false;
			
		});		
			
		});