$(document).ready(function(){
	//alert( $('form input[type=text]:not([name=direct_link_input]):not([name=user]):not([name=pass]):first').attr('name') );
	$('form input[type=text]:not([name=direct_link_input]):not([name=user]):not([name=pass]):first').focus();	
	
    $('.helpDialog').dialog({
	    bgiframe: true,
		autoOpen: false,
		height: 300,
		width: 300,
		modal: true,
		//hide: 'explode',
		buttons: {
	        'Zamknij': function(){ 
			    $(this).dialog('close'); 
			}
		}
	}); 
	
	$('form[name=formInPage] select').change(function(){
        document.location.href = $('form[name=formInPage]').attr('action') + $(this).val();
    });

    $('#dl_open').click(function(){
		$('.top_contener').not('#direct_link').hide('fast');
		$('#direct_link').toggle('fast');
	});
	$('#login_open').click(function(){
		$('.top_contener').not('#login').hide('fast');
		$('#login').toggle('fast');
	});
	
	$('#select_columns_click').click(function(){
		$('.option_content').not('#option_select_columns').hide('slow');
		$('#option_select_columns').toggle('fast');
	});
	$('#export_csv_click').click(function(){
		$('.option_content').not('#option_export_csv').hide('slow');
		$('#option_export_csv').toggle('fast');
	});
	$('.default_column input[type=checkbox]').click(function(){
		return false;
	})

 });
 
 
