// DOM готов
jQuery(document).ready(function(){

	jQuery('#tabBlockTabs > li').click(function(){
		if (!$(this).hasClass('current')) {
			var thisIndex = $(this).index();
			jQuery('#tabBlockTabs > li').removeClass('current');
			jQuery(this).addClass('current');
			
			if (thisIndex == 1) {
				//jQuery('#tabBlockContents').hide();
				jQuery('#tabBlockContents > li:not(:eq(' + thisIndex + '))').hide();
				jQuery('#a12').show();
			} else {
				jQuery('#a12').hide();
				//jQuery('#tabBlockContents').show(
				//jQuery('#tabBlockContents li').hide();
				//jQuery('#tabBlockContents li:not(:eq(' + thisIndex + '))').hide();
				jQuery('#tabBlockContents > li:visible').hide();
				jQuery('#tabBlockContents > li:eq(' + thisIndex + ')').show();
			}
		}
	});
	
   /*PIE.attach($('div.new_bron'));*/
});

jQuery('#a12').ready(function(){
	//alert($('#a12').contents().find('html body #searchboxInc').attr('id'));
	jQuery('#a12').contents().find('#searchboxInc').attr("style", "background: url('http://www.uralairlines.ru/images/frontend/mainBg.png') no-repeat scroll left bottom transparent; color: #FFFFFF; float: left; font: 12px/1.5 Arial,Helvetica,sans-serif; margin: 0 0 0 0;    padding-bottom: 14px;    padding-top: 20px;    width: 496px;*position:relative;*left:2px;");
	jQuery('#a12').contents().find('#searchboxInc fieldset').css('padding','0px 0px 0px 10px');
	jQuery('#a12').contents().find('#searchboxInc div.b_featPromosInc').css('padding-left','10px');
	jQuery('#a12').contents().find('#searchboxInc div.b_featPromosInc').css('margin-bottom','5px');
});


