$(document).ready( function(){
	$("#tab").tabs();
	var tabContainers = $('#tab > div');
	tabContainers.hide().filter(':first').show();
	
	$('#tab .tabnav a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('#tab .tabnav a').removeClass('active');
		$(this).addClass('active');
		return false;
	}).filter(':first').click();
	
	
	// Dialog		
	$('#dialog').dialog({
		autoOpen: false,
		title: 'Узнать цену',
		draggable: true,
		buttons: { 
			'Закрыть': function() { $(this).dialog("close"); }
		}
	});
	$('#dialog_open').click( function(){ $('#dialog').dialog('open'); });
	
} );
